| | |
| | | public String moneyChange() { |
| | | return FebsUtil.view("modules/system/moneyChange"); |
| | | } |
| | | |
| | | @GetMapping("payLink") |
| | | @RequiresPermissions("payLink:update") |
| | | public String payLink(Model model) { |
| | | PayLinkDto dto = new PayLinkDto(); |
| | | DataDictionaryCustom xtLink = dataDictionaryCustomMapper.selectDicDataByTypeAndCode("PAY_LINK", "XT_LINK"); |
| | | DataDictionaryCustom xtLinkImg = dataDictionaryCustomMapper.selectDicDataByTypeAndCode("PAY_LINK", "XT_LINK_IMG"); |
| | | if (xtLink != null) dto.setXtLink(xtLink.getValue()); |
| | | if (xtLinkImg != null) dto.setXtLinkImg(xtLinkImg.getValue()); |
| | | model.addAttribute("payLink", dto); |
| | | return FebsUtil.view("modules/system/payLink"); |
| | | } |
| | | } |