using System; using System.Linq; using System.Text; using SqlSugar; namespace EC_SeckillInfo { /// ///支付平台收支记录 /// [SugarTable("Pay_IncExpRecord")] public partial class Pay_IncExpRecord { public Pay_IncExpRecord(){ } /// /// 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 string PayerName {get;set;} /// /// Desc:收款账户 /// Default: /// Nullable:True /// public int? PayeeId {get;set;} /// /// Desc:收款方名称 /// Default: /// Nullable:True /// public string PayeeName {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 int? BalanceAccount {get;set;} } }