using System; using System.Linq; using System.Text; using SqlSugar; namespace EC_SeckillInfo { /// ///办公系统货品信息 /// [SugarTable("OA_GoodsInfo")] public partial class OA_GoodsInfo { public OA_GoodsInfo(){ } /// /// Desc:货品编号 /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true,IsIdentity=true)] public int Keyid {get;set;} /// /// Desc:所属厂商 /// Default: /// Nullable:False /// public Guid FirmId {get;set;} /// /// Desc:品牌编号 /// Default: /// Nullable:False /// public int BrandId {get;set;} /// /// Desc:规格编号 /// Default: /// Nullable:False /// public int SpecificationId {get;set;} /// /// Desc:货品名称 /// Default: /// Nullable:False /// public string GoodsName {get;set;} /// /// Desc:货品类型编号 /// Default: /// Nullable:False /// public string GoodsTypeId {get;set;} /// /// Desc:克重 /// Default: /// Nullable:True /// public int? Weight {get;set;} /// /// Desc:状态编号 /// Default: /// Nullable:True /// public int? StatusId {get;set;} /// /// Desc:价格 /// Default: /// Nullable:True /// public decimal? Price {get;set;} /// /// Desc:长 /// Default: /// Nullable:True /// public int? GoodsLength {get;set;} /// /// Desc:宽 /// Default: /// Nullable:True /// public int? GoodsWidth {get;set;} /// /// Desc:高 /// Default: /// Nullable:True /// public int? GoodsHeight {get;set;} /// /// Desc:单位 /// Default: /// Nullable:True /// public string Unit {get;set;} /// /// Desc:警戒库存 /// Default: /// Nullable:True /// public int? WarningInventory {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 int? OrderNum {get;set;} } }