using System; using System.Linq; using System.Text; using SqlSugar; namespace MyCode.Project.Domain.ZHMDModel { /// /// /// [SugarTable("WMStoJackyun_InventoryMovement_View1")] public partial class WMStoJackyunInventoryMovementView1 { public WMStoJackyunInventoryMovementView1(){ } /// /// Desc: /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true,IsIdentity=true)] public int Id {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string 单据号 {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string WMS单号 {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public long? 单据行号 {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string 单据类型 {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string 单据类型名称 {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string 变动方向 {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string ITEMID {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string SKU {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string BARCODE {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string 尺码 {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string 单位 {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string 商品名称 {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public int? 数量 {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string 仓库 {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public DateTime? 过账日期 {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string 备注 {get;set;} /// /// Desc:0=未处理 1=已合并 2=已推送 /// Default:0 /// Nullable:True /// [SugarColumn(ColumnName="status")] public int? Status {get;set;} } }