using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DS.WMS.Core.QuarztJobs.Dtos { public class BankStatementModel { } public class GetBankStatementPost { /// /// 公司名称 /// public string AccountName { get; set; } /// /// 公司识别码 /// public string AccountKey { get; set; } /// /// 开始时间 /// public string BeginDate { get; set; } /// /// 结束时间 /// public string EndDate { get; set; } } public class GetBankStatementPostOutput { public List result { get; set; } } public class BankStatementData { public string Custom { get; set; } public string BankName { get; set; } public string AccountName { get; set; } public string AccountId { get; set; } public string TransactionType { get; set; } public string BusinessType { get; set; } public string AccountHoldingBankNumberOfPayer { get; set; } public string PayerAccountBank { get; set; } public string PayerAccountNumber { get; set; } public string PayerName { get; set; } public string AccountHoldingBankNumberOfPayee { get; set; } public string PayeeAccountBank { get; set; } public string PayeeAccountNumber { get; set; } public string PayeeName { get; set; } public string TransactionDate { get; set; } public string TransactionTime { get; set; } public string TradeCurrency { get; set; } public string TradeAmount { get; set; } public string AfterTransactionBalance { get; set; } public string ValueDate { get; set; } public string ExchangeRate { get; set; } public string TransactionReferenceNumber { get; set; } public string OnlineBankingTransactionRef { get; set; } public string CustomerTransactionRef { get; set; } public string VoucherType { get; set; } public string VoucherNumber { get; set; } public string RecordID { get; set; } public string Reference { get; set; } public string Purpose { get; set; } public string Remark { get; set; } public string Remarks { get; set; } public string Reserve1 { get; set; } public string Reserve2 { get; set; } public string Reserve3 { get; set; } public string OpeningBankNumberOfNominalPayer { get; set; } public string OpeningBankNameOfNominalPayer { get; set; } public string AccountNumberOfNominalPayer { get; set; } public string NameOfNominalPayer { get; set; } public string OpeningBankNumberOfNominalPayee { get; set; } public string OpeningBankNameOfNominalPayee { get; set; } public string AccountNumberOfNominalPayee { get; set; } public string NameOfNominalPayee { get; set; } public DateTime CreateTime { get; set; } public string FilePaths { get; set; } } }