啊鑫
2024-09-26 58787157e2609916c06d3ed7d19b6403e9cd5d31
MESApplication/Controllers/QC/RKJController.cs
@@ -365,4 +365,27 @@
            return ResponseResult.ResponseError(ex);
        }
    }
    //cleanReqResult
    [HttpPost("cleanReqResult")]
    public ResponseResult cleanReqResult([FromBody] RKJDto xjDto)
    {
        try
        {
            dynamic resultInfos = new ExpandoObject();
            var tbBillList =
                new RKJService().cleanReqResult(xjDto);
            resultInfos.tbBillList = tbBillList;
            return new ResponseResult
            {
                status = 0,
                message = "OK",
                data = resultInfos
            };
        }
        catch (Exception ex)
        {
            return ResponseResult.ResponseError(ex);
        }
    }
}