| | |
| | | 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"); |
| | | } |
| | | } |