package com.xcong.excoin.modules.documentary.controller;
|
|
import javax.annotation.Resource;
|
import javax.validation.Valid;
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
import org.springframework.web.bind.annotation.PostMapping;
|
import org.springframework.web.bind.annotation.RequestBody;
|
import org.springframework.web.bind.annotation.RequestMapping;
|
import org.springframework.web.bind.annotation.RestController;
|
|
import com.xcong.excoin.common.response.Result;
|
import com.xcong.excoin.modules.documentary.dto.UpdateDocumentaryOrderSetDto;
|
import com.xcong.excoin.modules.documentary.dto.UpdateTradeSetInfoDto;
|
import com.xcong.excoin.modules.documentary.service.DocumentaryService;
|
import com.xcong.excoin.modules.documentary.vo.DocumentaryOrderSetInfoVo;
|
import com.xcong.excoin.modules.documentary.vo.MyFollowOrderVo;
|
import com.xcong.excoin.modules.documentary.vo.TradeSetInfoVo;
|
import com.xcong.excoin.modules.documentary.vo.TraderStatusVo;
|
|
import io.swagger.annotations.Api;
|
import io.swagger.annotations.ApiImplicitParam;
|
import io.swagger.annotations.ApiImplicitParams;
|
import io.swagger.annotations.ApiOperation;
|
import io.swagger.annotations.ApiResponse;
|
import io.swagger.annotations.ApiResponses;
|
import lombok.extern.slf4j.Slf4j;
|
|
@RestController
|
@Slf4j
|
@RequestMapping(value = "/api/trader")
|
@Api(value = "TraderController", tags = "跟单---交易员")
|
public class TraderController {
|
|
@Resource
|
DocumentaryService documentaryService;
|
|
/**
|
* 成为交易员---状态查询
|
*/
|
@ApiOperation(value="成为交易员---状态查询", notes="成为交易员---状态查询")
|
@ApiResponses({@ApiResponse( code = 200, message = "success", response = TraderStatusVo.class)})
|
@GetMapping(value = "/beTraderStatus")
|
public Result beTraderStatus() {
|
return documentaryService.beTraderStatus();
|
}
|
|
/**
|
* 成为交易员---立即入驻
|
*/
|
@ApiOperation(value="成为交易员---立即入驻", notes="成为交易员---立即入驻")
|
@GetMapping(value = "/beTrader")
|
public Result beTrader() {
|
return documentaryService.beTrader();
|
}
|
|
/**
|
* 交易员设置--进入编辑
|
*/
|
@ApiOperation(value="交易员设置--进入编辑", notes="交易员设置--进入编辑")
|
@ApiResponses({@ApiResponse( code = 200, message = "success", response = TradeSetInfoVo.class)})
|
@GetMapping(value = "/getTradeSetInfo")
|
public Result getTradeSetInfo() {
|
return documentaryService.getTradeSetInfo();
|
}
|
|
/**
|
* 交易员设置--更新设置
|
*/
|
@ApiOperation(value="交易员设置--更新设置", notes="交易员设置--更新设置")
|
@PostMapping(value = "/updateTradeSetInfo")
|
public Result updateTradeSetInfo(@RequestBody @Valid UpdateTradeSetInfoDto updateTradeSetInfoDto) {
|
return documentaryService.updateTradeSetInfo(updateTradeSetInfoDto);
|
}
|
|
}
|