| | |
| | | import org.springframework.web.bind.annotation.RestController;
|
| | |
|
| | | import com.xcong.excoin.common.response.Result;
|
| | | import com.xcong.excoin.modules.documentary.dto.BeTraderDto;
|
| | | import com.xcong.excoin.modules.documentary.dto.OutFollowInfoDto;
|
| | | import com.xcong.excoin.modules.documentary.dto.TradeFollowInfoDto;
|
| | | import com.xcong.excoin.modules.documentary.dto.TradeOrderInfoDto;
|
| | |
| | | * 成为交易员---立即入驻
|
| | | */
|
| | | @ApiOperation(value="成为交易员---立即入驻", notes="成为交易员---立即入驻")
|
| | | @GetMapping(value = "/beTrader")
|
| | | public Result beTrader() {
|
| | | return documentaryService.beTrader();
|
| | | @PostMapping(value = "/beTrader")
|
| | | public Result beTrader(@RequestBody @Valid BeTraderDto beTraderDto) {
|
| | | return documentaryService.beTrader(beTraderDto);
|
| | | }
|
| | |
|
| | | /**
|