MESApplication/Controllers/QC/XJController.cs
@@ -442,4 +442,26 @@ return ResponseResult.ResponseError(ex); } } [HttpPost("XJQaSubmit")] public ResponseResult XJQaSubmit(LLJDto rkjDto) { try { dynamic resultInfos = new ExpandoObject(); var tbBillList = new XJService().XJQaSubmit(rkjDto); resultInfos.tbBillList = tbBillList; return new ResponseResult { status = 0, message = "OK", data = resultInfos }; } catch (Exception ex) { return ResponseResult.ResponseError(ex); } } }