using System; using System.Linq; using System.Text; using SqlSugar; namespace EC_SeckillInfo { /// ///办公系统货品类别 /// [SugarTable("OA_Commodity")] public partial class OA_Commodity { public OA_Commodity(){ } /// /// 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 string CommodityName {get;set;} /// /// Desc:是否纸张 /// Default: /// Nullable:False /// public int IsPaper {get;set;} /// /// Desc:上级编号 /// Default: /// Nullable:True /// public int? ParentId {get;set;} /// /// Desc:是否使用 /// Default: /// Nullable:False /// public bool IsUsed {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;} } }