| | |
| | | /// <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; } |
| | | |
| | | /// <summary> |
| | | /// 物料名称 |
| | | /// </summary> |
| | | public string S_ITEM_NAME { get; set; } = string.Empty; |
| | | |
| | | /// <summary> |
| | | /// 容器编码 |
| | |
| | | /// <summary> |
| | | /// 货品数量 |
| | | /// </summary> |
| | | public float F_QTY { get; set; } |
| | | public int N_QTY { get; set; } = 0; |
| | | |
| | | /// <summary> |
| | | /// 物料规格 |
| | | /// </summary> |
| | | public string S_SPE { 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 int N_PRODUCT_LINE { get; set; } = 0; // NOTE 后续MES可能会提供,先创建 |
| | | } |
| | | } |