| | |
| | | import javax.annotation.Resource;
|
| | | import javax.validation.Valid;
|
| | |
|
| | | import com.xcong.excoin.modules.coin.parameter.vo.AllWalletCoinVo;
|
| | | import com.xcong.excoin.modules.coin.parameter.vo.MemberAccountMoneyChangeInfoVo;
|
| | | import com.xcong.excoin.modules.coin.parameter.vo.MemberAgentIntoInfoVo;
|
| | | import com.xcong.excoin.modules.coin.parameter.vo.MemberWalletAgentInfoVo;
|
| | |
| | | @Resource
|
| | | private CoinService coinService;
|
| | |
|
| | | /**
|
| | | * 获取我的总资产
|
| | | * @return
|
| | | */
|
| | | @ApiOperation(value = "获取我的总资产", notes = "获取我的总资产")
|
| | | @ApiResponses({@ApiResponse( code = 200, message = "success", response = AllWalletCoinVo.class)})
|
| | | @GetMapping(value = "/getAllWalletCoin")
|
| | | public Result getAllWalletCoin() {
|
| | | return coinService.getAllWalletCoin();
|
| | | }
|
| | | /**
|
| | | * 获取我的币币资产信息
|
| | | * @return
|
| | |
| | | */
|
| | | @ApiOperation(value="获取代理资产佣金入账", notes="获取代理资产佣金入账")
|
| | | @ApiResponses({@ApiResponse( code = 200, message = "success", response = MemberAgentIntoInfoVo.class)})
|
| | | @GetMapping(value="/getWalletAgentIntoRecords")
|
| | | public Result getWalletAgentIntoRecords() {
|
| | | return coinService.getWalletAgentIntoRecords();
|
| | | @PostMapping(value="/getWalletAgentIntoRecords")
|
| | | public Result getWalletAgentIntoRecords(@RequestBody @Valid RecordsPageDto recordsPageDto) {
|
| | | return coinService.getWalletAgentIntoRecords(recordsPageDto);
|
| | | }
|
| | |
|
| | | /**
|