using System; using System.Linq; using System.Text; using SqlSugar; namespace EC_SeckillInfo { /// /// /// [SugarTable("EC_ExSingleTem")] public partial class EC_ExSingleTem { public EC_ExSingleTem(){ } /// /// Desc: /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true,IsIdentity=true)] public int Keyid {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public Guid? MemberId {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string EST_Name {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string EST_Type {get;set;} /// /// Desc: /// Default:0 /// Nullable:True /// public bool? EST_IsUse {get;set;} /// /// Desc: /// Default:0 /// Nullable:True /// public int? EST_Width {get;set;} /// /// Desc: /// Default:0 /// Nullable:True /// public int? EST_Height {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string EST_Background {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string EST_Html {get;set;} /// /// Desc: /// Default:0 /// Nullable:True /// public int? OrderNum {get;set;} /// /// Desc: /// Default:DateTime.Now /// Nullable:True /// public DateTime? LastUpdateTime {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string Operator {get;set;} } }