You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

69 lines
1.5 KiB
C#

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
{
/// <summary>
/// 获取银行流水请求参数
/// </summary>
public class GetBankStatementInput
{
///// <summary>
///// 银行账户id
///// </summary>
//public string? AccountId { get; set; }
///// <summary>
///// 交易类型,来账 往账
///// </summary>
//public string? TransactionType { get; set; }
///// <summary>
///// 银行账号
///// </summary>
//public string? PayerAccountNumber { get; set; }
///// <summary>
///// 付款人名称
///// </summary>
//public string? PayerName { get; set; }
///// <summary>
///// 交易日期起始
///// </summary>
//public DateTime? StartDate { get; set; }
///// <summary>
///// 交易期日截止
///// </summary>
//public DateTime? EndDate { get; set; }
}
/// <summary>
/// 获取银行流水列表返回参数
/// </summary>
public class GetBankStatementOutPut:BankStatement
{
}
/// <summary>
/// 获取银行账户列表
/// </summary>
public class GetBankAccountListInput
{
}
public class GetBankAccountListOutput
{
public string BankName { get; set; }
public string AccountId { get; set; }
}
}