添加项目文件。

This commit is contained in:
Administrator
2026-08-06 09:23:30 +08:00
parent 771e23e00a
commit 4660ceee70
604 changed files with 138380 additions and 0 deletions
+45
View File
@@ -0,0 +1,45 @@
using System.Collections.Generic;
namespace JinYuan.MES.Models
{
/// <summary>
/// 卡板电芯信息上传(装箱)接口参数类
/// </summary>
public class PackParam
{
/// <summary>
/// 工厂代码
/// </summary>
public string siteCode { get; set; }
public string lineCode { get; set; }
/// <summary>
/// 设备编号
/// </summary>
public string equipNum { get; set; }
/// <summary>
/// 卡板码(箱唛号)
/// </summary>
public string ContainerCode { get; set; }
public int capacity { get; set; }
/// <summary>
/// 档位
/// </summary>
public string grade { get; set; }
public string materialCode { get; set; }
/// <summary>
/// 电芯信息列表
/// </summary>
public List<BatteryInfo> cellDataVOList { get; set; }
};
public class BatteryInfo
{
//电芯条码
public string identification { get; set; }
//电芯条码位置
public string locationBat { get; set; }
}
}