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.
48 lines
1.4 KiB
C#
48 lines
1.4 KiB
C#
using DS.Module.Core;
|
|
using DS.WMS.Core.Application.Dtos;
|
|
using DS.WMS.Core.Settlement.Dtos;
|
|
using DS.WMS.Core.Settlement.Interface;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace DS.WMS.FeeApi.Controllers
|
|
{
|
|
/// <summary>
|
|
/// 付费结算API
|
|
/// </summary>
|
|
public class PaymentSettlementController : ApiController
|
|
{
|
|
readonly IPaymentSettlementService _service;
|
|
|
|
/// <summary>
|
|
/// 初始化
|
|
/// </summary>
|
|
/// <param name="service"></param>
|
|
public PaymentSettlementController(IPaymentSettlementService service)
|
|
{
|
|
_service = service;
|
|
}
|
|
|
|
/// <summary>
|
|
/// 获取列表
|
|
/// </summary>
|
|
/// <param name="request"></param>
|
|
/// <returns></returns>
|
|
[HttpPost, Route("GetList")]
|
|
public async Task<DataResult<List<PaymentSettlementDto>>> ListAsync([FromBody] PageRequest request)
|
|
{
|
|
return await _service.GetListAsync(request);
|
|
}
|
|
|
|
/// <summary>
|
|
/// 获取付费申请分页列表
|
|
/// </summary>
|
|
/// <param name="request"></param>
|
|
/// <returns></returns>
|
|
[HttpPost, Route("GetApplicationList")]
|
|
public async Task<DataResult<List<PaymentApplicationDto>>> GetApplicationListAsync([FromBody] PageRequest request)
|
|
{
|
|
return await _service.GetApplicationListAsync(request);
|
|
}
|
|
}
|
|
}
|