using System; using System.Linq; using System.Text; using SqlSugar; namespace WMS.Core { /// /// /// [SugarTable("BILL_INVENTORYTRANSACTION")] public partial class BILL_INVENTORYTRANSACTION { public BILL_INVENTORYTRANSACTION(){ } public int F_inventoryNo { get;set;} /// /// Desc:仓库 /// Default: /// Nullable:False /// public string F_warehouseNo { get;set;} /// /// Desc:商品编码 /// Default: /// Nullable:True /// public string F_matNo { get;set;} /// /// Desc:商品名称 /// Default: /// Nullable:True /// public string F_matName { get;set;} /// /// Desc:库存类型 /// Default: /// Nullable:False /// public int F_matType { get;set;} /// /// Desc:源数量 /// Default: /// Nullable:False /// public int F_sourceQuantity { get;set;} /// /// Desc:修改后数量 /// Default: /// Nullable:False /// public int F_targetQuantity { get; set; } /// /// Desc:源锁定数量 /// Default: /// Nullable:True /// public int F_sourceLockQty { get;set;} /// /// Desc:修改后锁定数量 /// Default: /// Nullable:True /// public int F_targetLockQty { get; set; } /// /// Desc:目标托盘号 /// Default: /// Nullable:True /// public string F_sourceTrayNo { get; set; } /// /// Desc:目标托盘号 /// Default: /// Nullable:True /// public string F_targetTrayNo { get; set; } /// /// Desc:批次号 /// Default: /// Nullable:True /// public string F_batchNo { get; set; } /// /// Desc:备注 /// Default: /// Nullable:True /// public string F_memo { get; set; } /// /// Desc:创建人 /// Default: /// Nullable:True /// public string F_addUserNo { get; set; } /// /// Desc:创建时间 /// Default: /// Nullable:True /// public DateTime F_addTime { get; set; } /// /// Desc:箱号 /// Default: /// Nullable:True /// public string F_boxNo { get; set; } /// /// Desc:UID /// Default: /// Nullable:True /// public string F_UID { get; set; } /// /// Desc:项目号 /// Default: /// Nullable:True /// public string F_projectNo { get; set; } } }