using System; using System.Linq; using System.Text; using SqlSugar; namespace EC_SeckillInfo { /// /// /// [SugarTable("P_Process")] public partial class P_Process { public P_Process(){ } /// /// Desc: /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true,IsIdentity=true)] public int id {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public int? Member_id {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public int? Business_CustomerManagement_id {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string PP_Name {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string PP_Paper {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public int? PP_PaperValue {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string PP_Type {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public decimal? PP_Price {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string PP_Unit {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public decimal? PP_From {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public decimal? PP_Die {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string PP_UpdatePeople {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public DateTime? PP_UpTime {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public int? OrderNum {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public DateTime? UpTime {get;set;} } }