using System; using System.Linq; using System.Text; using SqlSugar; namespace EC_SeckillInfo { /// /// /// [SugarTable("Pay_ScoreRecord")] public partial class Pay_ScoreRecord { public Pay_ScoreRecord(){ } /// /// 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 int TradingScore {get;set;} /// /// Desc:剩余金额 /// Default: /// Nullable:False /// public int ResidualScore {get;set;} /// /// Desc:创建时间 /// Default: /// Nullable:True /// public DateTime? CreateTime {get;set;} /// /// Desc:备注 /// Default: /// Nullable:True /// public string Remark {get;set;} } }