From 553a9c1328512bae1f03d3931313e7aab2b89375 Mon Sep 17 00:00:00 2001 From: zhibing.pu <393733352@qq.com> Date: 星期二, 13 八月 2024 19:49:57 +0800 Subject: [PATCH] 新增加分布式事务配置和修改启动异常 --- ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/controller/TVipController.java | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/controller/TVipController.java b/ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/controller/TVipController.java index 6942f7e..b982719 100644 --- a/ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/controller/TVipController.java +++ b/ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/controller/TVipController.java @@ -85,7 +85,7 @@ * @return */ @PostMapping(value = "/getVipInfoByType") - public R<TVip> getVipInfoByType(@RequestParam Integer type){ + public R<TVip> getVipInfoByType(@RequestParam("type") Integer type){ switch (type){ case 1: return R.ok(vipService.getOne(Wrappers.lambdaQuery(TVip.class) -- Gitblit v1.7.1