using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Text; namespace Shentun.Peis.PaymentRecords { public class PaymentRecordDto : AuditedEntityDtoName { /// ///发票申请表id /// public Guid InvoiceApplyId { get; set; } /// /// 付款账户 /// public string PaymentAccount { get; set; } /// /// 付款银行 /// public string PaymentBank { get; set; } /// /// 付款金额 /// public decimal PaymentAmount { get; set; } /// /// 付款时间 /// public string PaymentTime { get; set; } /// /// 收款账户 /// public string CollectionAccount { get; set; } /// /// 收款银行 /// public string CollectionBank { get; set; } /// /// 交易流水号 /// public string TransactionId { get; set; } /// /// 备注 /// public string Remark { get; set; } } }