From 76845ad173ea83841285598e2a569f19e443aa61 Mon Sep 17 00:00:00 2001 From: Pu Zhibing <393733352@qq.com> Date: 星期一, 17 三月 2025 10:46:45 +0800 Subject: [PATCH] 修改购买会员判断逻辑 --- ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/controller/TIntegralRuleController.java | 6 ++++++ 1 files changed, 6 insertions(+), 0 deletions(-) diff --git a/ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/controller/TIntegralRuleController.java b/ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/controller/TIntegralRuleController.java index cbb81d3..a029e65 100644 --- a/ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/controller/TIntegralRuleController.java +++ b/ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/controller/TIntegralRuleController.java @@ -79,6 +79,12 @@ return R.ok(res); } + @PostMapping("/getSet2") + public R<TIntegralRule> getSet2() { + TIntegralRule res = integralRuleService.getOne(new QueryWrapper<>()); + return R.ok(res); + } + @GetMapping("/getSet1") -- Gitblit v1.7.1