From 70af23c7bb284fbbda04934e4da63e4729b1a065 Mon Sep 17 00:00:00 2001 From: KKSU <15274802129@163.com> Date: Mon, 10 Feb 2025 15:47:02 +0800 Subject: [PATCH] fix(pay): 修复余额更新逻辑 --- src/main/java/cc/mrbird/febs/mall/controller/ViewSystemController.java | 25 +++++++++++++++++++++++++ 1 files changed, 25 insertions(+), 0 deletions(-) diff --git a/src/main/java/cc/mrbird/febs/mall/controller/ViewSystemController.java b/src/main/java/cc/mrbird/febs/mall/controller/ViewSystemController.java index ff3fdea..93e3249 100644 --- a/src/main/java/cc/mrbird/febs/mall/controller/ViewSystemController.java +++ b/src/main/java/cc/mrbird/febs/mall/controller/ViewSystemController.java @@ -99,4 +99,29 @@ model.addAttribute("indexVideoSet", adminIndexVideoDto); return FebsUtil.view("modules/system/indexVideo"); } + + + + @GetMapping("faPiao") + @RequiresPermissions("faPiao:update") + public String faPiao(Model model) { + FaPiaoDto faPiaoDto = new FaPiaoDto(); + DataDictionaryCustom dic = dataDictionaryCustomMapper.selectDicDataByTypeAndCode(DataDictionaryEnum.FP_CALLBACK_URL.getType(), + DataDictionaryEnum.FP_CALLBACK_URL.getCode()); + if (dic != null) { + faPiaoDto.setCallbackUrl(dic.getValue()); + } + model.addAttribute("faPiaoDto", faPiaoDto); + return FebsUtil.view("modules/system/faPiao"); + } + + @GetMapping("vipCenterSetting") + public String vipCenterSetting() { + return FebsUtil.view("modules/system/vipCenterSetting"); + } + + @GetMapping("kefu") + public String kefu() { + return FebsUtil.view("modules/system/kefu"); + } } -- Gitblit v1.9.1