using System; using System.Linq; using System.Text; using SqlSugar; namespace EC_SeckillInfo { /// ///办公系统货位 /// [SugarTable("OA_CargoSpace")] public partial class OA_CargoSpace { public OA_CargoSpace(){ } /// /// Desc:编号 /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true,IsIdentity=true)] public int Keyid {get;set;} /// /// Desc:会员编号 /// Default: /// Nullable:False /// public Guid MemberId {get;set;} /// /// Desc:仓库编号 /// Default: /// Nullable:False /// public int WarehouseId {get;set;} /// /// Desc:长 /// Default: /// Nullable:True /// public int? Length {get;set;} /// /// Desc:宽 /// Default: /// Nullable:True /// public int? Width {get;set;} /// /// Desc:高 /// Default: /// Nullable:True /// public int? Height {get;set;} /// /// Desc:状态 /// Default: /// Nullable:False /// public int StatusId {get;set;} /// /// Desc:最后修改时间 /// Default: /// Nullable:False /// public DateTime LastUpdateTime {get;set;} /// /// Desc:操作人 /// Default: /// Nullable:False /// public string Operator {get;set;} /// /// Desc:备注 /// Default: /// Nullable:True /// public string Remark {get;set;} /// /// Desc:货位名称 /// Default: /// Nullable:True /// public string Name {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public int? OrderNum {get;set;} } }