using System; using System.Linq; using System.Text; using SqlSugar; namespace WMS.Core { /// /// /// [SugarTable("BILL_INOUTTASKNODIS")] public partial class BILL_INOUTTASKNODIS { public BILL_INOUTTASKNODIS(){ } /// /// Desc:任务号 /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true)] public string F_TASKNO {get;set;} /// /// Desc:任务类型 1 入库 2 出库 3 质检 4 盘点 /// Default: /// Nullable:False /// public int F_TYPE {get;set;} /// /// Desc:容器组条码 /// Default: /// Nullable:True /// public string F_CONTRGRPBARCODE {get;set;} /// /// Desc:容器条码 /// Default: /// Nullable:True /// public string F_CONTRBARCODE {get;set;} /// /// Desc:库存ID /// Default: /// Nullable:True /// public string F_ROWNO {get;set;} /// /// Desc:创建人员 /// Default: /// Nullable:False /// public string F_ADDUSERNO {get;set;} /// /// Desc:创建时间 /// Default: /// Nullable:False /// public DateTime F_ADDTIME {get;set;} /// /// Desc:编辑人 /// Default: /// Nullable:False /// public string F_EDITUSERNO {get;set;} /// /// Desc:编辑时间 /// Default: /// Nullable:False /// public DateTime F_EDITTIME {get;set;} /// /// Desc:消息 /// Default: /// Nullable:True /// public string F_MESSAGE {get;set;} /// /// Desc:货位号 /// Default: /// Nullable:True /// public string F_WAREHOUECELLNO {get;set;} /// /// Desc:单据号 /// Default: /// Nullable:True /// public string F_ORDERNO {get;set;} /// /// Desc:明细ID /// Default: /// Nullable:True /// public string F_ORDERITEMNO {get;set;} /// /// Desc:物料编码 /// Default: /// Nullable:True /// public string F_MATNO {get;set;} /// /// Desc:数量 /// Default: /// Nullable:False /// public decimal F_QTY {get;set;} /// /// Desc:物料批次号 /// Default: /// Nullable:True /// public string F_BACTH {get;set;} /// /// Desc:物料版本号 /// Default: /// Nullable:True /// public string F_VER {get;set;} /// /// Desc:物料档位 /// Default: /// Nullable:True /// public string F_GER {get;set;} /// /// Desc:物料状态 /// Default: /// Nullable:True /// public int? F_MATSTATENUM {get;set;} /// /// Desc:容器组ID /// Default: /// Nullable:True /// public string F_CONTRGRPNO {get;set;} /// /// Desc:仓库号 /// Default: /// Nullable:True /// public string F_WAREHOUSENO {get;set;} /// /// Desc:区域号 /// Default: /// Nullable:True /// public string F_WAREANO {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public int? F_LOCKSTATUS {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string F_LOCKUSER {get;set;} /// /// Desc: /// Default: /// Nullable:False /// public DateTime F_LOCKTIME {get;set;} /// /// Desc: /// Default: /// Nullable:False /// public DateTime F_DELETETIME {get;set;} } }