using DS.WMS.Core.Fee.Entity;
using DS.WMS.Core.Invoice.Entity;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DS.WMS.Core.Invoice.Dtos
{
///
/// 获取银行流水请求参数
///
public class GetBankStatementInput
{
/////
///// 银行账户id
/////
//public string? AccountId { get; set; }
/////
///// 交易类型,来账 往账
/////
//public string? TransactionType { get; set; }
/////
///// 银行账号
/////
//public string? PayerAccountNumber { get; set; }
/////
///// 付款人名称
/////
//public string? PayerName { get; set; }
/////
///// 交易日期起始
/////
//public DateTime? StartDate { get; set; }
/////
///// 交易期日截止
/////
//public DateTime? EndDate { get; set; }
}
///
/// 获取银行流水列表返回参数
///
public class GetBankStatementOutPut:BankStatement
{
}
///
/// 获取银行账户列表
///
public class GetBankAccountListInput
{
}
public class GetBankAccountListOutput
{
public string BankName { get; set; }
public string AccountId { get; set; }
}
}