Browse Source

feat: [落笔留痕] 增加测试历史数据接口

master
memorylkf 5 days ago
parent
commit
69411f54c4
1 changed files with 10 additions and 0 deletions
  1. +10
    -0
      hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/controller/TestController.java

+ 10
- 0
hxhq-modules/hxhq-system/src/main/java/com/hxhq/business/controller/TestController.java View File

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

Loading…
Cancel
Save