| | |
| | | import cc.mrbird.febs.dapp.chain.ChainService; |
| | | import cc.mrbird.febs.dapp.dto.PriceSettingDto; |
| | | import cc.mrbird.febs.dapp.entity.*; |
| | | import cc.mrbird.febs.dapp.mapper.DappMessageDao; |
| | | import cc.mrbird.febs.dapp.service.DappMemberService; |
| | | import cc.mrbird.febs.dapp.service.DappSystemService; |
| | | import cc.mrbird.febs.dapp.vo.AdminMemberIdentityVo; |
| | |
| | | public FebsResponse identitySet(@Valid DappMemberEntity memberEntity) { |
| | | return dappMemberService.identitySet(memberEntity); |
| | | } |
| | | |
| | | /** |
| | | * 资金流水--回退 |
| | | */ |
| | | @GetMapping(value = "/amountFlowBack/{id}") |
| | | public FebsResponse amountFlowBack(@PathVariable("id") Long id) { |
| | | return dappMemberService.amountFlowBack(id); |
| | | } |
| | | |
| | | /** |
| | | * 客服消息-列表 |
| | | */ |
| | | @GetMapping("messageList") |
| | | public FebsResponse messageList(DappMessageEntity dappMessageEntity, QueryRequest request) { |
| | | Map<String, Object> data = getDataTable(dappMemberService.getMessageListInPage(dappMessageEntity, request)); |
| | | return new FebsResponse().success().data(data); |
| | | } |
| | | } |