From 99004292e20a9e1efa4e3b11b8c319bfd796912c Mon Sep 17 00:00:00 2001 From: cjs <2216046164@qq.com> Date: 星期一, 14 七月 2025 17:24:30 +0800 Subject: [PATCH] 111 --- HH.WCS.Mobox3.NongFuLinZhi/models/Container.cs | 60 ++++++++++++++++++++++++++++++++++++++++++++++-------------- 1 files changed, 46 insertions(+), 14 deletions(-) diff --git a/HH.WCS.Mobox3.NongFuLinZhi/models/Container.cs b/HH.WCS.Mobox3.NongFuLinZhi/models/Container.cs index da25bae..a81e602 100644 --- a/HH.WCS.Mobox3.NongFuLinZhi/models/Container.cs +++ b/HH.WCS.Mobox3.NongFuLinZhi/models/Container.cs @@ -5,29 +5,61 @@ namespace HH.WCS.Mobox3.NFLZ { [SugarTable("TN_Container")] - public class Container : BaseModel { - - + public class Container : BaseModel + { + /// <summary> + /// 容器编码 + /// </summary> public string S_CODE { get; set; } + /// <summary> + /// 类型 + /// </summary> public string S_TYPE { get; set; } - public string S_SPEC { get; set; } - public float F_WEIGHT { get; set; } - public float F_LOAD_WEIGHT { get; set; } - public float F_MAX_WEIGHT { get; set; } - public int N_LENGTH { get; set; } - public int N_WIDTH { get; set; } - public int N_HEIGHT { get; set; } - public string C_IS_VIRTUAL { get; set; } = "N"; + /// <summary> + /// 类型值 + /// </summary> public int N_TYPE { get; set; } + /// <summary> + /// 规格 + /// </summary> + public string S_SPEC { get; set; } + /// <summary> + /// 自重 + /// </summary> + public float F_WEIGHT { get; set; } + /// <summary> + /// 最大容量 + /// </summary> + public float F_MAX_CAP { get; set; } + /// <summary> + /// 最大重量 + /// </summary> + public float F_MAX_WEIGHT { get; set; } + public string C_IS_VIRTUAL { get; set; } = "N"; public string C_ENABLE { get; set; } = "Y"; - public string S_STATE_PRE { get; set; } - public int N_REVIEW_RESULT { get; set; } - + /// <summary> + /// 明细条数 + /// </summary> public int N_DETAIL_COUNT { get; set; } public int N_B_STATE { get; set; } public string S_LOCK_OP_CODE { get; set; } public string S_LOCK_STATE { get; set; } public int N_LOCK_STATE { get; set; } + public float F_GOOD_WEIGHT { get; set; } + public float F_MAX_VOLUME { get; set; } + public float F_GOOD_VOLUME { get; set; } + public string C_FULL { get; set; } + public int N_EMPTY_FULL { get; set; } + public int N_MAX_CELL_NUM { get; set; } + public int N_EMPTY_CELL_NUM { get; set; } + public float F_LENGTH { get; set; } + public float F_WIDTH { get; set; } + public float F_HEIGHT { get; set; } + public string S_POSITION { get; set; } + public int N_GOOD_NUM { get; set; } + public int N_ALLOC_CELL_NUM { get; set; } + public string S_SOURCE { get; set; } + public float F_ACT_WEIGHT { get; set; } /// <summary> /// 码盘时候标记 /// </summary> -- Gitblit v1.9.1