| | |
| | | import cc.mrbird.febs.common.utils.RedisUtils; |
| | | import cc.mrbird.febs.dapp.entity.AppVersion; |
| | | import cc.mrbird.febs.dapp.entity.DappMemberEntity; |
| | | import cc.mrbird.febs.dapp.entity.IgtOnHookPlanOrder; |
| | | import cc.mrbird.febs.dapp.mapper.DappMemberDao; |
| | | import cc.mrbird.febs.dapp.service.DappMemberService; |
| | | import lombok.RequiredArgsConstructor; |
| | |
| | | return FebsUtil.view("dapp/identitySet"); |
| | | } |
| | | |
| | | /** |
| | | * 客服消息-列表 |
| | | * @return |
| | | */ |
| | | @GetMapping("messageList") |
| | | @RequiresPermissions("messageList:view") |
| | | public String messageList() { |
| | | return FebsUtil.view("dapp/message-list"); |
| | | } |
| | | |
| | | /** |
| | | * 每日资产总览-列表 |
| | | * @return |
| | | */ |
| | | @GetMapping("moneyTotal") |
| | | @RequiresPermissions("moneyTotal:view") |
| | | public String moneyTotal() { |
| | | return FebsUtil.view("dapp/money-total"); |
| | | } |
| | | |
| | | /** |
| | | * 每日资产总览-充值详情 |
| | | * @param createTime |
| | | * @param model |
| | | * @return |
| | | */ |
| | | public static String createTimeStr; |
| | | @GetMapping("/amountFlow/{createTime}") |
| | | @RequiresPermissions("amountFlow:update") |
| | | public String amountFlow(@PathVariable String createTime, Model model) { |
| | | createTimeStr = createTime; |
| | | return FebsUtil.view("dapp/money-total-flow"); |
| | | } |
| | | |
| | | /** |
| | | * 每日资产总览-提现详情 |
| | | * @param createTime |
| | | * @param model |
| | | * @return |
| | | */ |
| | | @GetMapping("/amountOutFlow/{createTime}") |
| | | @RequiresPermissions("amountOutFlow:update") |
| | | public String amountOutFlow(@PathVariable String createTime, Model model) { |
| | | createTimeStr = createTime; |
| | | return FebsUtil.view("dapp/money-total-flow-out"); |
| | | } |
| | | |
| | | } |