using System; using System.Collections.Generic; using System.Linq; using SqlSugar; namespace ZR.Model.MES.wms { /// /// 成品库当前货物表 /// [SugarTable("wm_goods_now_production")] public class WmGoodsNowProduction { /// /// 雪花id /// [SugarColumn(ColumnName = "id", IsPrimaryKey = true)] public string Id { 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 = "partnumber")] public string Partnumber { get; set; } /// /// 库位编号 /// [SugarColumn(ColumnName = "location_code")] public string LocationCode { 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 = "remark")] 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; } } }