| | |
| | | |
| | | namespace HH.WCS.Mobox3.YNJT_BZP.models |
| | | { |
| | | [SugarTable("TN_Item_Barcode_H")] |
| | | /// <summary> |
| | | /// 半制品条码信息表 |
| | | /// </summary> |
| | | [SugarTable("TN_iWMS_semi_BCScan")] |
| | | internal class ItemBarcodeInfo : BaseModel |
| | | { |
| | | public string S_ITEM { get; set; } // 产品材料的物品代码(从条形码数字左侧起截取前10位) |
| | | public string S_BC_ENTRIED { get; set; } // 产品材料的条形码编号 |
| | | public string S_TOOLING_CODE { get; set; } // 工装条码 |
| | | public string S_MCN { get; set; } // 机器代码编号 |
| | | public string S_OPR { get; set; } // 操作员ID |
| | | public DateTime TXNDATE { get; set; } // 产品材料的生产时间 |
| | | public string S_SHIFT { get; set; } // 工作班次代码(班次 I (07:00~14:59) - 班次 II (15:00~22:59) - 班次 III (23:00~06:59)) |
| | | public int N_QTY { get; set; } // 首次扫描的条码的产品数量 |
| | | public int N_STOCK { get; set; } // 在加工过程中的实时库存数量 |
| | | public string S_LOKASI { get; set; } // 产品材料的位置/位置ID |
| | | public string S_SARANA { get; set; } // 产品材料的托盘/盒/推车/货车ID |
| | | public string BOM1 { get; set; } |
| | | public string BOM2 { get; set; } |
| | | public string BOM3 { get; set; } |
| | | public string S_FOVRAGE { get; set; } // 是否过期 是否过期(null 或 空 默认 否) Y/N |
| | | public string S_JDGE { get; set; } // 质检状态 |
| | | public int N_OVERAGE { get; set; } // 有效期 |
| | | public int N_MINHOUR { get; set; } // 最低放置期 |
| | | public int N_PRODUCT_TYPE_CODE { get; set; } // 物料类别编码 |
| | | public string LAST_MODIFY_TIME { get; set; } // 最后修改时间 |
| | | } |
| | | } |