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.
85 lines
2.7 KiB
C#
85 lines
2.7 KiB
C#
using DS.Module.Core;
|
|
using DS.WMS.Core.Code.Dtos;
|
|
using DS.WMS.Core.Code.Interface;
|
|
using DS.WMS.Core.Fee.Dtos;
|
|
using DS.WMS.Core.Fee.Interface;
|
|
using Microsoft.AspNetCore.Http;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace DS.WMS.FeeApi.Controllers
|
|
{
|
|
/// <summary>
|
|
/// 汇率设置服务
|
|
/// </summary>
|
|
public class FeeCurrencyExchangeController : ApiController
|
|
{
|
|
private readonly IFeeCurrencyExchangeService _invokeService;
|
|
|
|
/// <summary>
|
|
/// 构造函数
|
|
/// </summary>
|
|
/// <param name="invokeService"></param>
|
|
public FeeCurrencyExchangeController(IFeeCurrencyExchangeService invokeService)
|
|
{
|
|
_invokeService = invokeService;
|
|
}
|
|
|
|
/// <summary>
|
|
/// 列表
|
|
/// </summary>
|
|
/// <param name="request"></param>
|
|
/// <returns></returns>
|
|
[HttpPost]
|
|
[Route("GetFeeCurrencyExchangeList")]
|
|
public DataResult<List<FeeCurrencyExchangeRes>> GetFeeCurrencyExchangeList([FromBody] PageRequest request)
|
|
{
|
|
var res = _invokeService.GetListByPage(request);
|
|
return res;
|
|
}
|
|
|
|
/// <summary>
|
|
/// 编辑
|
|
/// </summary>
|
|
/// <param name="model"></param>
|
|
/// <returns></returns>
|
|
[HttpPost]
|
|
[Route("EditFeeCurrencyExchange")]
|
|
public DataResult EditFeeCurrencyExchange([FromBody] FeeCurrencyExchangeReq model)
|
|
{
|
|
var res = _invokeService.EditFeeCurrencyExchange(model);
|
|
return res;
|
|
}
|
|
|
|
/// <summary>
|
|
/// 详情
|
|
/// </summary>
|
|
/// <param name="id"></param>
|
|
/// <returns></returns>
|
|
[HttpGet]
|
|
[Route("GetFeeCurrencyExchangeInfo")]
|
|
public DataResult<FeeCurrencyExchangeRes> GetFeeCurrencyExchangeInfo([FromQuery] string id)
|
|
{
|
|
var res = _invokeService.GetFeeCurrencyExchangeInfo(id);
|
|
return res;
|
|
}
|
|
|
|
/// <summary>
|
|
/// 获取两种币别之间的汇率
|
|
/// </summary>
|
|
/// <param name="currencyFrom">原币别</param>
|
|
/// <param name="currencyTo">目标币别</param>
|
|
/// <param name="feeType">费用类型</param>
|
|
/// <returns></returns>
|
|
[HttpGet, Route("GetExchangeRate")]
|
|
public async Task<DataResult<ExchangeRate>> GetExchangeRateAsync([FromQuery] string currencyFrom, [FromQuery] string currencyTo, [FromQuery] FeeType? feeType)
|
|
{
|
|
return await _invokeService.GetExchangeRateAsync(new ExchangeRate
|
|
{
|
|
CurrencyFrom = currencyFrom,
|
|
CurrencyTo = currencyTo,
|
|
FeeType = feeType
|
|
});
|
|
}
|
|
}
|
|
}
|