| | |
| | | String value = symbolPrice.getValue() == null ? "0" : symbolPrice.getValue(); |
| | | adminSystemFeeVo.setSymbolPrice(value); |
| | | } |
| | | |
| | | DataDictionaryCustom directProfitDic = dataDictionaryCustomMapper.selectDicDataByTypeAndCode( |
| | | DataDictionaryEnum.DIRECT_PROFIT.getType(), DataDictionaryEnum.DIRECT_PROFIT.getCode()); |
| | | if (ObjectUtil.isNotEmpty(directProfitDic)) { |
| | | String value = directProfitDic.getValue() == null ? "0" : directProfitDic.getValue(); |
| | | adminSystemFeeVo.setDirectProfit(value); |
| | | } |
| | | model.addAttribute("systemFee", adminSystemFeeVo); |
| | | return FebsUtil.view("dapp/system-fee-set"); |
| | | } |
| | |
| | | teamInfoMemberId = id; |
| | | return FebsUtil.view("dapp/member-teamInfo"); |
| | | } |
| | | |
| | | |
| | | |
| | | public static long memberNodeInfoMemberId; |
| | | /** |
| | | * 用户列表-购买记录 |
| | | * @param id |
| | | * @param model |
| | | * @return |
| | | */ |
| | | @GetMapping("/memberNodeInfo/{id}") |
| | | @RequiresPermissions("memberNodeInfo:view") |
| | | public String memberNodeInfo(@PathVariable long id, Model model) { |
| | | memberNodeInfoMemberId = id; |
| | | return FebsUtil.view("dapp/member-node-Info"); |
| | | } |
| | | } |