| | |
| | | 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.insideWithNo(id); |
| | | } |
| | | |
| | | @GetMapping(value = "/changeAbleYes/{id}") |
| | | public FebsResponse changeAbleYes(@PathVariable("id") Long id) { |
| | | return dappMemberService.changeAbleYes(id); |
| | | } |
| | | |
| | | @GetMapping(value = "/changeAbleNo/{id}") |
| | | public FebsResponse changeAbleNo(@PathVariable("id") Long id) { |
| | | return dappMemberService.changeAbleNo(id); |
| | | } |
| | | |
| | | /** |
| | | * 代理-等级选择Option |
| | | */ |
| | |
| | | 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); |
| | | } |
| | | |
| | | @GetMapping(value = "/balanceSystem") |
| | | public FebsResponse balanceSystem() { |
| | | return dappMemberService.balanceSystem(); |
| | | // return new FebsResponse().success().message("操作成功"); |
| | | } |
| | | |
| | | } |