| | |
| | | return FebsUtil.view("dapp/member-withdraw"); |
| | | } |
| | | |
| | | @GetMapping("memberCharge") |
| | | @RequiresPermissions("charge:view") |
| | | public String memberCharge() { |
| | | return FebsUtil.view("dapp/member-charge"); |
| | | } |
| | | |
| | | @GetMapping("walletCoin") |
| | | @RequiresPermissions("walletCoin:view") |
| | | public String walletCoin() { |
| | |
| | | model.addAttribute("type", type); |
| | | return FebsUtil.view("dapp/mallSystemPay"); |
| | | } |
| | | |
| | | /** |
| | | * 个人-资金流水 |
| | | * @param id |
| | | * @param model |
| | | * @return |
| | | */ |
| | | public static long idMemberMoneyFlow; |
| | | @GetMapping("memberFlow/{id}") |
| | | @RequiresPermissions("agentLevel:view") |
| | | public String memberFlow(@PathVariable long id, Model model) { |
| | | idMemberMoneyFlow = id; |
| | | return FebsUtil.view("dapp/memberMoneyFlow"); |
| | | } |
| | | |
| | | @GetMapping("soccerLeagues") |
| | | @RequiresPermissions("soccerLeagues:view") |
| | | public String soccerLeagues() { |
| | | return FebsUtil.view("dapp/soccerLeagues"); |
| | | } |
| | | } |