using System; using System.Linq; using System.Text; using SqlSugar; namespace EC_SeckillInfo { /// /// /// [SugarTable("P_PaperSize")] public partial class P_PaperSize { public P_PaperSize(){ } /// /// Desc: /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true,IsIdentity=true)] public int id {get;set;} /// /// Desc: /// Default:0 /// Nullable:True /// public int? P_PrintingType_id {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string PPS_Name {get;set;} /// /// Desc: /// Default:0 /// Nullable:True /// public int? PPS_Value {get;set;} /// /// Desc: /// Default:0 /// Nullable:True /// public double? PPS_Width {get;set;} /// /// Desc: /// Default:0 /// Nullable:True /// public double? PPS_Heihgt {get;set;} /// /// Desc: /// Default:0 /// Nullable:True /// public double? PPS_Thick {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string PPS_UpdatePeople {get;set;} /// /// Desc: /// Default:DateTime.Now /// Nullable:True /// public DateTime? PPS_UpTime {get;set;} /// /// Desc: /// Default:0 /// Nullable:True /// public int? OrderNum {get;set;} /// /// Desc: /// Default:DateTime.Now /// Nullable:True /// public DateTime? UpTime {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string A {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string B {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string C {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string D {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string E {get;set;} } }