| | |
| | | import cc.mrbird.febs.common.utils.FebsUtil; |
| | | import cc.mrbird.febs.dapp.chain.ChainService; |
| | | import cc.mrbird.febs.dapp.dto.AgentLevelSetUpdateDto; |
| | | import cc.mrbird.febs.dapp.dto.MallSystemPayDto; |
| | | import cc.mrbird.febs.dapp.dto.PriceSettingDto; |
| | | import cc.mrbird.febs.dapp.entity.DappMemberEntity; |
| | | import cc.mrbird.febs.dapp.entity.DappSystemProfit; |
| | | import cc.mrbird.febs.dapp.entity.DappTransferRecordEntity; |
| | | import cc.mrbird.febs.dapp.entity.MallOrderInfo; |
| | | import cc.mrbird.febs.dapp.service.DappMemberService; |
| | | import cc.mrbird.febs.dapp.vo.AdminAgentLevelOptionTreeVo; |
| | | import cc.mrbird.febs.dapp.vo.AdminSystemFeeVo; |
| | |
| | | return dappMemberService.agentLevelSetUpdate(agentLevelSetUpdateDto); |
| | | } |
| | | |
| | | /** |
| | | * 代理列表-设置代理级别 |
| | | */ |
| | | @PostMapping("updateSystemPay") |
| | | @ControllerEndpoint(operation = "会员列表-系统拨付", exceptionMessage = "操作失败") |
| | | public FebsResponse agentLevelSetUpdate(@Valid MallSystemPayDto mallSystemPayDto) { |
| | | return dappMemberService.updateSystemPay(mallSystemPayDto); |
| | | } |
| | | |
| | | /** |
| | | * 订单列表-资金流水 |
| | | */ |
| | | @GetMapping("/orderMoneyFlow") |
| | | public FebsResponse orderMoneyFlow(QueryRequest request, DappMemberEntity dappMemberEntity, Integer parentId) { |
| | | if (parentId == null) { |
| | | ViewController.idMemberMoneyFlow = 0; |
| | | } |
| | | dappMemberEntity.setId(ViewController.idMemberMoneyFlow); |
| | | Map<String, Object> dataTable = getDataTable(dappMemberService.memberMoneyFlow(request, dappMemberEntity)); |
| | | return new FebsResponse().success().data(dataTable); |
| | | } |
| | | |
| | | } |