From 69411f54c4b121b07e7b93c3eacdd6ce758969fa Mon Sep 17 00:00:00 2001 From: memorylkf <312904636@qq.com> Date: Wed, 7 Jan 2026 13:26:52 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20[=E8=90=BD=E7=AC=94=E7=95=99=E7=97=95]?= =?UTF-8?q?=20=E5=A2=9E=E5=8A=A0=E6=B5=8B=E8=AF=95=E5=8E=86=E5=8F=B2?= =?UTF-8?q?=E6=95=B0=E6=8D=AE=E6=8E=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../main/java/com/hxhq/business/controller/TestController.java | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/controller/TestController.java b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/controller/TestController.java index 0b59384..757f379 100644 --- a/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/controller/TestController.java +++ b/hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/controller/TestController.java @@ -74,4 +74,14 @@ public class TestController extends BaseController logger.info("落笔留痕请求:"+JSONObject.toJSONString(json)); return AjaxResult.success(); } + + /** + * 查询落笔留痕 + */ + @PostMapping("/testLblhHistory") + public AjaxResult testLblhHistory(@RequestBody JSONObject json) + { + logger.info("落笔留痕历史请求:"+JSONObject.toJSONString(json)); + return AjaxResult.success(); + } }