using System.Collections.Generic;
namespace JinYuan.MES.Models
{
///
/// 多个电池进站
///
public class ManyCellInStation
{
///
/// 工厂代码
///
public string siteCode { get; set; }
///
/// 产线编号
///
public string lineCode { get; set; }
///
/// 设备编号
///
public string equipNum { get; set; }
///
/// 物料编码
///
public string materialCode { get; set; }
///
/// 员工账号
///
public string userName { get; set; }
///
/// 产品类型
///
public string productType { get; set; }
///
/// 电芯条码
///
// public List identificationList { get; set; }
public string identification { get; set; }
///
/// 容器条码
///
public List containerCodeList { get; set; }
}
}