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.
44 lines
1.3 KiB
C#
44 lines
1.3 KiB
C#
using DS.Module.Core;
|
|
using DS.WMS.Core.Application.Entity;
|
|
using DS.WMS.Core.Fee.Dtos;
|
|
using DS.WMS.Core.Op.Entity;
|
|
|
|
namespace DS.WMS.Core.Application.Interface
|
|
{
|
|
/// <summary>
|
|
/// 付费申请
|
|
/// </summary>
|
|
public interface IPaymentApplicationService : IApplicationService<PaymentApplication>
|
|
{
|
|
/// <summary>
|
|
/// 获取分页列表
|
|
/// </summary>
|
|
/// <param name="request"></param>
|
|
/// <returns></returns>
|
|
Task<DataResult<List<ApplicationDto>>> GetListAsync(PageRequest request);
|
|
|
|
/// <summary>
|
|
/// 获取待付费的业务列表
|
|
/// </summary>
|
|
/// <param name="request"></param>
|
|
/// <returns></returns>
|
|
Task<DataResult<List<FeeApplicationBiz>>> GetBizListAsync(PageRequest request);
|
|
|
|
/// <summary>
|
|
/// 获取申请单详情
|
|
/// </summary>
|
|
/// <param name="id">申请单ID</param>
|
|
/// <returns></returns>
|
|
Task<DataResult<ApplicationDto>> GetAsync(long id);
|
|
|
|
/// <summary>
|
|
/// 根据业务编号及类型获取关联费用记录
|
|
/// </summary>
|
|
/// <param name="id">业务ID</param>
|
|
/// <param name="businessType">业务类型</param>
|
|
/// <returns></returns>
|
|
Task<DataResult<FeeDto>> GetFeesAsync(long id, BusinessType businessType);
|
|
|
|
}
|
|
}
|