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.
35 lines
926 B
C#
35 lines
926 B
C#
using DS.Module.Core;
|
|
using DS.WMS.Core.Application.Entity;
|
|
using DS.WMS.Core.Invoice.Dtos;
|
|
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.Interface
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
/// 银行流水相关
|
|
/// </summary>
|
|
public interface IBankStatementService
|
|
{
|
|
/// <summary>
|
|
/// 获取银行流水列表
|
|
/// </summary>
|
|
/// <param name="request"></param>
|
|
/// <returns></returns>
|
|
Task<DataResult<List<GetBankStatementOutPut>>> GetBankStatementList(PageRequest<GetBankStatementInput> request);
|
|
|
|
/// <summary>
|
|
/// 获取银行账号列表
|
|
/// </summary>
|
|
/// <param name="request"></param>
|
|
/// <returns></returns>
|
|
Task<DataResult<List<GetBankAccountListOutput>>> GetBankAccountList();
|
|
}
|
|
}
|