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(); + } }