namespace ZR.Model.MES.wms { /// /// 出库货物记录表 /// [SugarTable("wm_goods_out_record")] public class WmGoodsOutRecord { /// /// 雪花id /// [SugarColumn(IsPrimaryKey = true, IsIdentity = false)] public string Id { get; set; } /// /// 成品库当前货物表主键 /// [SugarColumn(ColumnName = "fk_now_production_id")] public string FkNowProductionId { get; set; } /// /// 出库单号 /// [SugarColumn(ColumnName = "fk_out_order_id")] public string FkOutOrderId { get; set; } /// /// 箱子编号(MES) /// [SugarColumn(ColumnName = "package_code")] public string PackageCode { get; set; } /// /// 箱子编号(客户) /// [SugarColumn(ColumnName = "package_code_client")] public string PackageCodeClient { get; set; } /// /// 箱子编号(原始码) /// [SugarColumn(ColumnName = "package_code_original")] public string PackageCodeOriginal { get; set; } /// /// 库位编号 /// [SugarColumn(ColumnName = "location_code")] public string LocationCode { get; set; } /// /// 零件号 /// public string Partnumber { get; set; } /// /// 箱子中货物数量(理论) /// [SugarColumn(ColumnName = "goods_num_logic")] public int? GoodsNumLogic { get; set; } /// /// 箱子中货物数量(实际) /// [SugarColumn(ColumnName = "goods_num_action")] public int? GoodsNumAction { get; set; } /// /// 入库时间 /// [SugarColumn(ColumnName = "entry_warehouse_time")] public DateTime? EntryWarehouseTime { get; set; } /// /// 出库时间 /// [SugarColumn(ColumnName = "out_time")] public DateTime? OutTime { get; set; } /// /// 备注 /// public string Remark { get; set; } /// /// 更新人 /// [SugarColumn(ColumnName = "uPDATED_BY")] public string UpdatedBy { get; set; } /// /// 更新时间 /// [SugarColumn(ColumnName = "uPDATED_TIME")] public DateTime? UpdatedTime { get; set; } /// /// 创建人 /// [SugarColumn(ColumnName = "cREATED_BY")] public string CreatedBy { get; set; } /// /// 创建时间 /// [SugarColumn(ColumnName = "cREATED_TIME")] public DateTime? CreatedTime { get; set; } } }