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 { /// /// 银行流水相关 /// public interface IBankStatementService { /// /// 获取银行流水列表 /// /// /// Task>> GetBankStatementList(PageRequest request); /// /// 获取银行账号列表 /// /// /// Task>> GetBankAccountList(); } }