| | |
| | | */
|
| | | @ApiOperation(value = "币币是否自选", notes = "币币是否自选")
|
| | | @ApiResponses({@ApiResponse( code = 200, message = "success", response = MemberSelectSymbolsVo.class)})
|
| | | @PostMapping(value="/checkIsCollect")
|
| | | public Result checkIsCollect(@ApiParam(name="symbol",value="币种",required=true)String symbol) {
|
| | | @ApiImplicitParams({
|
| | | @ApiImplicitParam(name = "symbol", value = "币种", required = true, dataType = "String", paramType="query")
|
| | | })
|
| | | @GetMapping(value = "/checkIsCollect")
|
| | | public Result checkIsCollect(String symbol) {
|
| | | return orderCoinService.checkIsCollect(symbol);
|
| | | }
|
| | |
|