using System.Collections.Generic;
namespace JinYuan.MES.Models
{
///
/// 查询电芯档位接口参数类
///
public class QueryTrayParam
{
///
/// 工厂代码
///
public string siteCode { get; set; }
///
/// 产线编号
///
public string lineCode { get; set; }
///
/// 设备编号
///
public string equipNum { get; set; }
///
/// 记录时间
///
public string recordDate { get; set; }
///
/// 数量
///
public string qty { get; set; }
///
/// 托盘码
///
public string containerCode { get; set; }
///
/// 物料代码
///
public string materialCode { get; set; }
///
/// 操作人
///
// public List identificationList { get; set; }
public string userName { get; set; }
///
/// 电芯信息列表
///
public List listCode { get; set; }
};
public class MaterialLot
{
//电芯条码
public string identification { get; set; }
public string locationBat { get; set; }
}
///
/// 查询电芯档位接口参数类
///
public class QueryGradeParam
{
///
/// 工厂代码
///
public string siteCode { get; set; }
///
/// 产线编号
///
public string lineCode { get; set; }
///
/// 设备编号
///
public string equipNum { get; set; }
///
/// 记录时间
///
public string recordDate { get; set; }
///
/// 数量
///
public string qty { get; set; }
///
/// 物料代码
///
public string materialCode { get; set; }
///
/// 操作人
///
public string userName { get; set; }
public string actionType { get; set; } // 进站"IN", 出站"OUT"
///
/// 电芯信息列表
///
public List batteryTrayBindVOList { get; set; }
};
}