From b20d329978a567b22a56f2ccdffa450b03391443 Mon Sep 17 00:00:00 2001 From: 南骏 池 <chiffly@163.com> Date: 星期三, 13 八月 2025 13:58:48 +0800 Subject: [PATCH] 1.返工绑定 --- Controllers/Wom/WomdaaController.cs | 23 +++++++++++++++++++++++ 1 files changed, 23 insertions(+), 0 deletions(-) diff --git a/Controllers/Wom/WomdaaController.cs b/Controllers/Wom/WomdaaController.cs index 5790a6b..7265fd9 100644 --- a/Controllers/Wom/WomdaaController.cs +++ b/Controllers/Wom/WomdaaController.cs @@ -636,5 +636,28 @@ } } + /// <summary> + /// 杩斿伐缁戝畾 + /// </summary> + [HttpPost("ScanFgbd")] + public ResponseResult ScanFgbd([FromBody] dynamic query) + { + try + { + dynamic resultInfos = new ExpandoObject(); + resultInfos.tbBillList = m.ScanFgbd(query); + return new ResponseResult + { + status = 0, + message = "OK", + data = resultInfos + }; + } + catch (Exception ex) + { + return ResponseResult.ResponseError(ex); + } + } + #endregion } \ No newline at end of file -- Gitblit v1.9.3