| | |
| | | return memberService.memberMessageReminder();
|
| | | }
|
| | |
|
| | | /**
|
| | | |
| | | /**
|
| | | * 提币币种信息
|
| | | * @return
|
| | |
| | | @ApiOperation(value = "提币币种可用资金", notes = "提币币种可用资金")
|
| | | @ApiResponses({@ApiResponse( code = 200, message = "success", response = MemberAvivableCoinInfoVo.class)})
|
| | | @ApiImplicitParams({
|
| | | @ApiImplicitParam(name = "symbol", value = "币种", required = true, dataType = "String", paramType="query")
|
| | | @ApiImplicitParam(name = "symbol", value = "币种", required = true, dataType = "String", paramType="query"),
|
| | | @ApiImplicitParam(name = "label", value = "label", required=false, dataType = "String", paramType="query")
|
| | | })
|
| | | @GetMapping(value = "/memberAvivableCoinInfo")
|
| | | public Result memberAvivableCoinInfo(String symbol) {
|
| | | return memberService.memberAvivableCoinInfo(symbol);
|
| | | public Result memberAvivableCoinInfo(String symbol,String label) {
|
| | | return memberService.memberAvivableCoinInfo(symbol,label);
|
| | | }
|
| | |
|
| | | /**
|