using System; using System.Linq; using System.Text; using SqlSugar; namespace EC_SeckillInfo { /// /// /// [SugarTable("Info_AdLoction")] public partial class Info_AdLoction { public Info_AdLoction(){ } /// /// Desc: /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true,IsIdentity=true)] public int Keyid {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string AP_Title {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public int? OrderNum {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public int? Remark {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public int? AP_WidePixels {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public int? AP_HighPixels {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string AP_DefaultImg {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public DateTime? LastUpdateTime {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string Operator {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public decimal? Price_Month {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public decimal? Price_Season {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public decimal? Price_Half {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public decimal? Price_Year {get;set;} } }