using System; using System.Linq; using System.Text; using SqlSugar; namespace EC_SeckillInfo { /// /// /// [SugarTable("Info_Content")] public partial class Info_Content { public Info_Content(){ } /// /// 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 Title {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public bool? Title_Bold {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string Title_Color {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public int? SortID {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string Keyword {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string MeteDesc {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string FromSource {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string Author {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string WebLink {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public bool? IsRecommendation {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public bool? IsTop {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string InfoContent {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public int? Star {get;set;} /// /// Desc: /// Default:0 /// Nullable:True /// public int? Hits {get;set;} /// /// Desc: /// Default:0 /// Nullable:True /// public int? OrderNum {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public DateTime? CreatTime {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public DateTime? UpTime {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public int? GoodNum {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public int? MediumNum {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public int? BadNum {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public int? TypeId {get;set;} } }