namespace WIDESEA_DTO.MOM
{
public class ResultTrayCellsStatus : BasicResult
{
///
/// 托盘编号
///
public string TrayBarcode { get; set; }
///
/// 电芯列表
///
public List SerialNos { get; set; } = new List();
///
/// 绑定代码
///
public string BindCode { get; set; }
///
/// 料框属性列表
///
public List TrayBarcodePropertys { get; set; } = new List();
}
///
/// 电芯信息模型
///
public class SerialNoDto
{
///
/// 电芯号
///
public string SerialNo { get; set; }
///
/// 通道号
///
public int PositionNo { get; set; }
///
/// 电芯状态
///
public int SerialNoStatus { get; set; }
}
///
/// 料框属性模型
///
public class TrayBarcodePropertyDto
{
///
/// 料框属性
///
public string TrayBarcodeProperty { get; set; }
///
/// 工序
///
public string ProcessCode { get; set; }
///
/// 适用物料编码/工艺型号
///
public string ProductType { get; set; }
}
}