using Microsoft.SqlServer.Server; using SqlSugar; namespace WmsMobileServe.DataBase.Base.Po; /// /// 入库任务表 /// [SugarTable("T_ONGOODSSHELF")] public class TOnGoodsShelf { /// /// 入库单号 /// [SugarColumn(ColumnName = "LOT_ID", IsPrimaryKey = true)] public string? LotId { get; set; } /// /// 物料编号 /// [SugarColumn(ColumnName = "GOODSID")] public string? GoodsId { get; set; } /// /// 货主 /// [SugarColumn(ColumnName = "PROVIDER_ID")] public string? ProviderId { get; set; } /// /// 库位 /// [SugarColumn(ColumnName = "LOCATION_ID")] public string? LocationId { get; set; } /// /// 入库数量 /// [SugarColumn(ColumnName = "STO_NUM")] public decimal? StoNum { get; set; } /// /// 接收数量 /// [SugarColumn(ColumnName = "ACC_NUM")] public decimal? AccNum { get; set; } /// /// 上架数量 /// [SugarColumn(ColumnName = "SHELF_NUM")] public decimal? ShelfNum { get; set; } /// /// 实际上架数量 /// [SugarColumn(ColumnName = "STOCK_NUM")] public decimal? StockNum { get; set; } /// /// 上架时间 /// [SugarColumn(ColumnName = "ONDATE")] public DateTime? OnDate { get; set; } /// /// 上架人 /// [SugarColumn(ColumnName = "ONSHELFUSERID")] public string? OnShelfUserId { get; set; } /// /// 仓库编号 /// [SugarColumn(ColumnName = "STORAGE_ID")] public string? StorageId { get; set; } /// /// 库区编号 /// [SugarColumn(ColumnName = "STORAGE_AREA_ID")] public string? StorageAreaId { get; set; } /// /// 上架单号 /// [SugarColumn(ColumnName = "UPGOODS_ID")] public string? UpGoodsId { get; set; } // HASVOLUME /// /// 商品类别编号 /// [SugarColumn(ColumnName = "GOODS_TYPEID")] public string? GoodsTypeId { get; set; } /// /// 入库类型 /// [SugarColumn(ColumnName = "STORAGE_MODE")] public string? StorageMode { get; set; } /// /// 生产日期 /// [SugarColumn(ColumnName = "PRODUCTION_DATE")] public DateTime? ProdictionDate { get; set; } // GOODSVOLUME /// /// 载具号 /// [SugarColumn(ColumnName = "CTL")] public string? Ctl { get; set; } /// /// /// [SugarColumn(ColumnName = "BARCODE")] public string? BarCode { get; set; } /// /// 客户编号 /// [SugarColumn(ColumnName = "CUSTOMER_ID")] public string? CustomerId { get; set; } /// /// 物品名称 /// [SugarColumn(ColumnName = "GOODSNAME")] public string? GoodsName { get; set; } // PLCID // HIGH /// /// 状态 /// [SugarColumn(ColumnName = "STATUS")] public string? Status { get; set; } /// /// /// public string? PRODUCLOTID { get; set; } /// /// 单位 /// [SugarColumn(ColumnName = "UNIT")] public string? Unit { get; set; } /// /// 保质期 /// [SugarColumn(ColumnName = "BAOZHIQI")] public string? BAOZHIQI { get; set; } // WHSELOC // INSTAND /// /// 重量 /// [SugarColumn(ColumnName = "WGH")] public string? WGH { get; set; } // DECID /// /// /// [SugarColumn(ColumnName = "TASKTYPE")] public string? TaskType { get; set; } /// /// /// [SugarColumn(ColumnName = "GOODS_MEASURE_ID")] public string? GoodsMeasureId { get; set; } /// /// 打包数量 /// [SugarColumn(ColumnName = "PACKING_NUM")] public decimal? PackingNum { get; set; } /// /// /// [SugarColumn(ColumnName = "DAMAGE_NUM")] public decimal? DamageNum { get; set; } // ...... /// /// /// [SugarColumn(ColumnName = "SCALE_UNIT")] public string? ScaleUnit { get; set; } /// /// 备注 /// [SugarColumn(ColumnName = "REMARK")] public string? Remark { get; set; } [SugarColumn(ColumnName = "PO_HEADER_ID")] public string? PoHeaderId { get; set; } [SugarColumn(ColumnName = "PO_LINE_ID")] public string? PoLineId { get; set; } }