From 2d9194764070c154d9c32f4572aa73041e7f50fa Mon Sep 17 00:00:00 2001 From: 南骏 池 <chiffly@163.com> Date: 星期二, 22 四月 2025 15:08:14 +0800 Subject: [PATCH] 1.OA测试数据构建 --- Controllers/QC/OAJyController.cs | 7 +++---- 1 files changed, 3 insertions(+), 4 deletions(-) diff --git a/Controllers/QC/OAJyController.cs b/Controllers/QC/OAJyController.cs index ba47301..64f03ca 100644 --- a/Controllers/QC/OAJyController.cs +++ b/Controllers/QC/OAJyController.cs @@ -12,7 +12,7 @@ [ApiController] public class OAJyController : ControllerBase { - IpqcService m = new IpqcService(); + OAJyService m = new OAJyService(); [HttpPost("SumbitIQCToOA")] public ResponseResult SumbitIQCToOA([FromBody] dynamic queryObj) @@ -20,9 +20,8 @@ try { dynamic resultInfos = new ExpandoObject(); - //var resultInfos = m.SumbitIQCToOA(queryObj); - //var tbBillList = - // resultInfos.tbBillList = item; + resultInfos = m.SubmitIQCToOA(queryObj); + var tbBillList = resultInfos; return new ResponseResult { status = 0, -- Gitblit v1.9.3