using System.Collections.Generic; namespace JinYuan.MES.Models { /// /// 卡板电芯信息上传(装箱)接口参数类 /// public class PackParam { /// /// 工厂代码 /// public string siteCode { get; set; } public string lineCode { get; set; } /// /// 设备编号 /// public string equipNum { get; set; } /// /// 卡板码(箱唛号) /// public string ContainerCode { get; set; } public int capacity { get; set; } /// /// 档位 /// public string grade { get; set; } public string materialCode { get; set; } /// /// 电芯信息列表 /// public List cellDataVOList { get; set; } }; public class BatteryInfo { //电芯条码 public string identification { get; set; } //电芯条码位置 public string locationBat { get; set; } } }