| | |
| | | using SqlSugar; |
| | | |
| | | namespace HH.WCS.Mobox3.DSZSH.Models { |
| | | namespace HH.WCS.Mobox3.DSZSH.models { |
| | | /// <summary> |
| | | /// 【框架】物料-容器 关系表 |
| | | /// </summary> |
| | | [SugarTable("TN_CG_Detail")] |
| | | public class TN_CG_Detail : BaseModel { |
| | | |
| | | /// <summary> |
| | | /// 料箱商品标识 |
| | | /// </summary> |
| | | public string S_CG_ID { get; set; } |
| | | public string S_CG_ID { get; set; } = string.Empty; |
| | | |
| | | /// <summary> |
| | | /// 物料编码 |
| | | /// </summary> |
| | | public string S_ITEM_CODE { get; set; } = ""; |
| | | public string S_ITEM_CODE { get; set; } = string.Empty; |
| | | |
| | | /// <summary> |
| | | /// 物料名称 |
| | | /// </summary> |
| | | public string S_ITEM_NAME { get; set; } = string.Empty; |
| | | |
| | | /// <summary> |
| | | /// 容器编码 |
| | | /// </summary> |
| | | public string S_CNTR_CODE { get; set; } |
| | | public string S_CNTR_CODE { get; set; } = string.Empty; |
| | | |
| | | /// <summary> |
| | | /// 货品状态:0合格 1待检 2不合格 3正在检验;下线即待检 |
| | | /// 货品状态:0合格 1待检 2不合格 3抽检中;下线即待检 |
| | | /// </summary> |
| | | public string S_ITEM_STATE { get; set; } = "待检"; |
| | | |
| | |
| | | /// <summary> |
| | | /// 批次号 |
| | | /// </summary> |
| | | public string S_BATCH_NO { get; set; } |
| | | |
| | | public string S_BATCH_NO { get; set; } = string.Empty; |
| | | |
| | | /// <summary> |
| | | /// 货品数量 |
| | | /// </summary> |
| | | public int N_ITEM_NUM { get; set; } = 0; |
| | | |
| | | /// <summary> |
| | | /// 物料规格 |
| | | /// </summary> |
| | | public string S_ITEM_SPEC { get; set; } = string.Empty; |
| | | |
| | | // ------------------------------- |
| | | |
| | | /// <summary> |
| | | /// 执行标准 |
| | | /// </summary> |
| | | public string S_STANDARD { get; set; } = string.Empty; |
| | | |
| | | /// <summary> |
| | | /// 净含量 |
| | | /// </summary> |
| | | public string S_NET_WEIGHT { get; set; } = string.Empty; |
| | | |
| | | /// <summary> |
| | | /// 质量等级 |
| | | /// </summary> |
| | | public string S_QUALITY_GRADE { get; set; } = string.Empty; |
| | | |
| | | ///// <summary> |
| | | ///// 货品数量 |
| | | ///// 产线号 |
| | | ///// </summary> |
| | | //public float F_QTY { get; set; } |
| | | //public int N_PRODUCT_LINE { get; set; } = 0; // NOTE 后续MES可能会提供,先创建 |
| | | |
| | | // ---------------- |
| | | |
| | | // [NOTE] |
| | | |
| | | ///// <summary> |
| | | ///// 物料所在的区域 |
| | | ///// </summary> |
| | | //public string S_AREA_CODE { get; set; } = string.Empty; |
| | | } |
| | | } |