From cc134fa83edea4865b48d7afc1acda5ad70e7465 Mon Sep 17 00:00:00 2001 From: luodangjia <luodangjia> Date: 星期一, 13 一月 2025 11:20:05 +0800 Subject: [PATCH] 12.18 --- ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/controller/VipSettingController.java | 11 +++++++++++ 1 files changed, 11 insertions(+), 0 deletions(-) diff --git a/ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/controller/VipSettingController.java b/ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/controller/VipSettingController.java index c7f9387..8811191 100644 --- a/ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/controller/VipSettingController.java +++ b/ruoyi-service/ruoyi-other/src/main/java/com/ruoyi/other/controller/VipSettingController.java @@ -113,6 +113,13 @@ } + @PostMapping("getVipSettingById1") + public R<VipSetting> getVipSettingById1(@RequestParam("id") Integer id) { + return R.ok(vipSettingService.getById(id)); + } + + + /** * 查询会员配置 * @param id @@ -151,6 +158,8 @@ vipSetDto.setPartPoint(new BigDecimal(base1.getContent())); BaseSetting base2 = baseSettingService.getById(2); vipSetDto.setBottomPartPoint(new BigDecimal(base2.getContent())); + BaseSetting base3 = baseSettingService.getById(3); + vipSetDto.setVipInfo(base3.getContent()); return R.ok(vipSetDto); } @@ -198,6 +207,8 @@ @ApiOperation(value = "设置", tags = {"后台-会员等级设置"}) public R<Void> managelevelset(@RequestBody SetDto setDto) { vipSettingService.updateBatchById(setDto.getVipSettingList()); + //会员降级检测 + appUserClient.demotionDetection(); return R.ok(); } -- Gitblit v1.7.1