From 531155f4bce6b9a09fa3167fdd45655c882fb219 Mon Sep 17 00:00:00 2001 From: 无关风月 <443237572@qq.com> Date: 星期三, 14 八月 2024 10:16:44 +0800 Subject: [PATCH] Merge branch 'master' of http://120.76.84.145:10101/gitblit/r/java/mx_charging_pile --- ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/controller/TUserTagController.java | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/controller/TUserTagController.java b/ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/controller/TUserTagController.java index a224192..2a669b4 100644 --- a/ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/controller/TUserTagController.java +++ b/ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/controller/TUserTagController.java @@ -50,7 +50,7 @@ } //标签删除 @PostMapping(value = "/delete") - public R delete(@RequestParam Integer id) { + public R delete(@RequestParam("id") Integer id) { tUserTagService.removeById(id); return R.ok(); } @@ -69,7 +69,7 @@ } @PostMapping(value = "/getById") - public R<TUserTag> getById(@RequestParam Integer id) { + public R<TUserTag> getById(@RequestParam("id") Integer id) { return R.ok(tUserTagService.getById(id)); } -- Gitblit v1.7.1