using System; using System.Linq; using System.Text; using SqlSugar; namespace EC_SeckillInfo { /// ///办公系统汇款通知 /// [SugarTable("OA_RemittanceAdvice")] public partial class OA_RemittanceAdvice { public OA_RemittanceAdvice(){ } /// /// Desc:数据编号 /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true,IsIdentity=true)] public int Keyid {get;set;} /// /// Desc:收款厂商编号 /// Default: /// Nullable:False /// public Guid ReceivablesFirm {get;set;} /// /// Desc:汇款厂商编号 /// Default: /// Nullable:False /// public Guid RemittanceFirmId {get;set;} /// /// Desc:汇款金额 /// Default: /// Nullable:False /// public double RemittanceMoney {get;set;} /// /// Desc:汇款银行编号 /// Default: /// Nullable:True /// public int? RemittanceBankId {get;set;} /// /// Desc:交易方式编号 /// Default: /// Nullable:True /// public int? TransactionsId {get;set;} /// /// Desc:交易渠道编号 /// Default: /// Nullable:True /// public int? TradingChannelsId {get;set;} /// /// Desc:交易摘要 /// Default: /// Nullable:True /// public string TrandingSummary {get;set;} /// /// Desc:交易说明 /// Default: /// Nullable:True /// public string TrandingExplain {get;set;} /// /// Desc:交易地点 /// Default: /// Nullable:True /// public string TrandingPlace {get;set;} /// /// Desc:付款账号 /// Default: /// Nullable:True /// public string PaymentAccount {get;set;} /// /// Desc:交易状态 /// Default: /// Nullable:True /// public int? TrandingStatus {get;set;} /// /// Desc:交易时间 /// Default: /// Nullable:True /// public DateTime? TrandingTime {get;set;} /// /// Desc:确认时间 /// Default: /// Nullable:True /// public DateTime? SuerTime {get;set;} /// /// Desc:确认金额 /// Default: /// Nullable:True /// public double? SuerMoney {get;set;} /// /// Desc:发起时间 /// Default: /// Nullable:False /// public DateTime PublishTime {get;set;} /// /// Desc:备注 /// Default: /// Nullable:True /// public string Remark {get;set;} /// /// Desc:确认人 /// Default: /// Nullable:True /// public string SuerPerson {get;set;} /// /// Desc:发起人 /// Default: /// Nullable:False /// public string Publisher {get;set;} } }