chenyong
2025-05-22 a46b0171f379cd03149ea1e7d8c204ffd8b980a9
Code Management/WMS/WIDESEA_WMSServer/WIDESEA_WMSServer/Controllers/Integration/AgingInOrOutController.cs
@@ -19,7 +19,7 @@
    /// <returns></returns>
    // POST: api/AgingInOrOut/OCVInput
    [HttpPost("OCVInput")]
    public Task<dynamic> GetOCVInputAsync([FromBody] AgingInputDto input)
    public Task<WebResponseContent> GetOCVInputAsync([FromBody] AgingInputDto input)
    {
        return _agingInOrOutInputService.GetOCVInputAsync(input);
    }
@@ -31,7 +31,7 @@
    /// <returns></returns>
    // POST: api/AgingInOrOut/OCVOutput
    [HttpPost("OCVOutput")]
    public Task<dynamic> GetOCVOutputAsync([FromBody]AgingOutputDto input)
    public Task<WebResponseContent> GetOCVOutputAsync([FromBody] AgingOutputDto input)
    {
        return _agingInOrOutInputService.GetOCVOutputAsync(input);
    }