| | |
| | | @Api(value = "会员资产接口", tags = "会员资产接口")
|
| | | @RestController
|
| | | @RequestMapping(value = "/api/walletCoin")
|
| | | public class CoinController {
|
| | | public class
|
| | |
|
| | | CoinController {
|
| | |
|
| | | @Resource
|
| | | private CoinService coinService;
|
| | |
| | | }
|
| | |
|
| | | /**
|
| | | * 记录
|
| | | * @return
|
| | | */
|
| | | @ApiOperation(value="记录", notes="记录")
|
| | | @ApiResponses({@ApiResponse( code = 200, message = "success", response = CoinInListVo.class)})
|
| | | @PostMapping(value="/coinInList")
|
| | | public Result coinInList(@RequestBody @Valid CoinInListDto coinInListDto) {
|
| | | return coinService.coinInList(coinInListDto);
|
| | | }
|
| | |
|
| | | /**
|
| | | * 获取币币资产交易记录
|
| | | * @return
|
| | | */
|