KKSU
2025-01-08 d175d1a66a53a46f182316680afd8a9bf6314ea0
src/main/java/cc/mrbird/febs/mall/controller/ViewSystemController.java
@@ -99,4 +99,24 @@
        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");
    }
}