| | |
| | |
|
| | | import com.xcong.excoin.common.response.Result;
|
| | | import com.xcong.excoin.modules.documentary.service.DocumentaryService;
|
| | | import com.xcong.excoin.modules.documentary.vo.MemberIsTradeVo;
|
| | |
|
| | | import io.swagger.annotations.Api;
|
| | | import io.swagger.annotations.ApiOperation;
|
| | | import io.swagger.annotations.ApiResponse;
|
| | | import io.swagger.annotations.ApiResponses;
|
| | | import lombok.extern.slf4j.Slf4j;
|
| | |
|
| | | @RestController
|
| | |
| | | * 成为交易员---立即入驻
|
| | | */
|
| | | @ApiOperation(value="成为交易员---立即入驻", notes="成为交易员---立即入驻")
|
| | | @ApiResponses({@ApiResponse( code = 200, message = "success", response = MemberIsTradeVo.class)})
|
| | | @GetMapping(value = "/getTraderInfo")
|
| | | public Result getMemberIsTradeInfo() {
|
| | | return documentaryService.getMemberIsTradeInfo();
|
| | | @GetMapping(value = "/beTrader")
|
| | | public Result beTrader() {
|
| | | return documentaryService.beTrader();
|
| | | }
|
| | |
|
| | | }
|