添加项目文件。

This commit is contained in:
Administrator
2026-08-04 18:36:40 +08:00
parent 16fb9e4f5a
commit a2ecbc795d
616 changed files with 149853 additions and 0 deletions
+56
View File
@@ -0,0 +1,56 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace JinYuan.MES.Models
{
public class WmsUpload
{
/// <summary>
/// 所属仓库
/// </summary>
public string warehouseCode { get; set; }
/// <summary>
/// 货主
/// </summary>
public string customerCode { get; set; }
/// <summary>
/// 设备编码
/// </summary>
public string equipmentCode { get; set; }
/// <summary>
/// 设备名称
/// </summary>
public string equipmentName { get; set; }
/// <summary>
/// 底托(卡板)
/// </summary>
public string trayLabel { get; set; }
/// <summary>
/// 详细信息
/// </summary>
public List<InnerBoxLabelInfo> innerBoxLabelList { get; set; }
}
public class InnerBoxLabelInfo
{
/// <summary>
/// 外箱标签(宝马层托)托盘码
/// </summary>
public string outerBoxLabel { get; set; }
/// <summary>
/// 内箱标签,电芯码
/// </summary>
public string innerBoxLabel { get; set; }
/// <summary>
/// 质检结果,N-良品 Y-不良品
/// </summary>
public string iqcState { get; set; }
/// <summary>
/// 电芯位置,G11需传该字段
/// </summary>
public string batteriesLocation { get; set; }
}
}