| | |
| | | import java.math.BigDecimal; |
| | | |
| | | /** |
| | | * @author |
| | | * @author |
| | | * @date 2022-03-21 |
| | | **/ |
| | | @Controller("dappView") |
| | |
| | | } |
| | | |
| | | |
| | | @GetMapping(value ="priceSetting") |
| | | @GetMapping(value = "priceSetting") |
| | | @RequiresPermissions("price:setting:view") |
| | | public String priceSetting(Model model) { |
| | | BigDecimal price = (BigDecimal) redisUtils.get(AppContants.REDIS_KEY_ETH_NEW_PRICE); |
| | |
| | | } |
| | | |
| | | //费率设置 |
| | | @GetMapping(value ="systemFeeSet") |
| | | @GetMapping(value = "systemFeeSet") |
| | | @RequiresPermissions("fee:setting:view") |
| | | public String systemFeeSet(Model model) { |
| | | AdminSystemFeeVo adminSystemFeeVo = new AdminSystemFeeVo(); |
| | | DataDictionaryCustom rebateDic = dataDictionaryCustomMapper.selectDicDataByTypeAndCode(DataDictionaryEnum.REBATE_PERCENT.getType(), DataDictionaryEnum.REBATE_PERCENT.getCode()); |
| | | if(ObjectUtil.isNotEmpty(rebateDic)){ |
| | | String value = rebateDic.getValue() == null ? "0":rebateDic.getValue(); |
| | | if (ObjectUtil.isNotEmpty(rebateDic)) { |
| | | String value = rebateDic.getValue() == null ? "0" : rebateDic.getValue(); |
| | | adminSystemFeeVo.setRebatePercent(value); |
| | | } |
| | | DataDictionaryCustom memberFeeDic = dataDictionaryCustomMapper.selectDicDataByTypeAndCode(DataDictionaryEnum.MEMBER_FEE.getType(), DataDictionaryEnum.MEMBER_FEE.getCode()); |
| | | if(ObjectUtil.isNotEmpty(memberFeeDic)){ |
| | | String value = memberFeeDic.getValue() == null ? "0":memberFeeDic.getValue(); |
| | | if (ObjectUtil.isNotEmpty(memberFeeDic)) { |
| | | String value = memberFeeDic.getValue() == null ? "0" : memberFeeDic.getValue(); |
| | | adminSystemFeeVo.setMemberFee(value); |
| | | } |
| | | DataDictionaryCustom serviceFeeDic = dataDictionaryCustomMapper.selectDicDataByTypeAndCode(DataDictionaryEnum.WITHDRAW_SERVICE_FEE.getType(), DataDictionaryEnum.WITHDRAW_SERVICE_FEE.getCode()); |
| | | if(ObjectUtil.isNotEmpty(serviceFeeDic)){ |
| | | String value = serviceFeeDic.getValue() == null ? "0":serviceFeeDic.getValue(); |
| | | if (ObjectUtil.isNotEmpty(serviceFeeDic)) { |
| | | String value = serviceFeeDic.getValue() == null ? "0" : serviceFeeDic.getValue(); |
| | | adminSystemFeeVo.setServiceFee(value); |
| | | } |
| | | |
| | | DataDictionaryCustom symbolPrice = dataDictionaryCustomMapper.selectDicDataByTypeAndCode(DataDictionaryEnum.SYMBOL_PRICE.getType(), DataDictionaryEnum.SYMBOL_PRICE.getCode()); |
| | | if (ObjectUtil.isNotEmpty(symbolPrice)) { |
| | | String value = symbolPrice.getValue() == null ? "0" : symbolPrice.getValue(); |
| | | adminSystemFeeVo.setSymbolPrice(value); |
| | | } |
| | | model.addAttribute("systemFee", adminSystemFeeVo); |
| | | return FebsUtil.view("dapp/system-fee-set"); |
| | | } |