using System; using System.Linq; using System.Text; using SqlSugar; namespace EC_SeckillInfo { /// /// /// [SugarTable("Pay_PromotionRecord")] public partial class Pay_PromotionRecord { public Pay_PromotionRecord(){ } /// /// Desc:编号 /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true,IsIdentity=true)] public int Keyid {get;set;} /// /// Desc:帐户编号 /// Default: /// Nullable:True /// public int? PayId {get;set;} /// /// Desc:交易名称 /// Default: /// Nullable:True /// public string TradingName {get;set;} /// /// Desc:交易类型 /// Default: /// Nullable:True /// public int? TradingType {get;set;} /// /// Desc:交易状态 /// Default: /// Nullable:False /// public int TradingState {get;set;} /// /// Desc:交易金额 /// Default: /// Nullable:False /// public decimal TradingMoney {get;set;} /// /// Desc:剩余金额 /// Default: /// Nullable:False /// public decimal ResidualMoney {get;set;} /// /// Desc:创建时间 /// Default: /// Nullable:True /// public DateTime? CreateTime {get;set;} /// /// Desc:备注 /// Default: /// Nullable:True /// public string Remark {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public bool? IsProxy {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string TardingRemark {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public Guid? SendMemberId {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public Guid? GetMemberId {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string RewardType {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string DataType {get;set;} } }