修改改扣费

dev
jianghaiqing 3 weeks ago
parent 5b06452c82
commit 0f379ab509

@ -31,16 +31,19 @@ public class SeaExportController : ApiController
private readonly ISeaExportService _invokeService;
private readonly ISeaExportCommonService _commonService;
private readonly ICargooService _cargooService;
private readonly IDJYChargeFeeService _chargeFeeService;
/// <summary>
/// 构造函数
/// </summary>
/// <param name="invokeService"></param>
public SeaExportController(ISeaExportService invokeService, ISeaExportCommonService commonService, ICargooService cargooService)
public SeaExportController(ISeaExportService invokeService, ISeaExportCommonService commonService, ICargooService cargooService,
IDJYChargeFeeService chargeFeeService)
{
_invokeService = invokeService;
_commonService = commonService;
_cargooService = cargooService;
_chargeFeeService = chargeFeeService;
}
/// <summary>
@ -568,4 +571,16 @@ public class SeaExportController : ApiController
return res;
}
/// <summary>
/// 手工补扣费用
/// </summary>
/// <param name="model">请求详情</param>
/// <returns></returns>
[HttpPost]
[Route("ManualDJYChargeFee")]
public async Task<DataResult<DJYChargeFeeResultDto>> SendCargoo([FromBody] DJYChargeFeeRequestDto model)
{
return await _chargeFeeService.ChargeFee(model);
}
}
Loading…
Cancel
Save