xiaoyong931011
2021-05-15 1089e7795ac98fc0486694e5116f44ee28807f7c
src/main/java/com/xcong/excoin/modules/yunding/controller/YunDingController.java
@@ -1,14 +1,9 @@
package com.xcong.excoin.modules.yunding.controller;
import com.xcong.excoin.common.response.Result;
import com.xcong.excoin.modules.yunding.dto.PayProductDto;
import com.xcong.excoin.modules.yunding.dto.YdOrderListDto;
import com.xcong.excoin.modules.yunding.dto.YdProductListDto;
import com.xcong.excoin.modules.yunding.dto.*;
import com.xcong.excoin.modules.yunding.service.YunDingService;
import com.xcong.excoin.modules.yunding.vo.OrderAllInfoVo;
import com.xcong.excoin.modules.yunding.vo.YdBasicSettingVo;
import com.xcong.excoin.modules.yunding.vo.YdOrderVo;
import com.xcong.excoin.modules.yunding.vo.YdProductVo;
import com.xcong.excoin.modules.yunding.vo.*;
import io.swagger.annotations.*;
import lombok.extern.slf4j.Slf4j;
import org.springframework.validation.annotation.Validated;
@@ -60,6 +55,15 @@
    }
    /**
     * 获取XCH当前价
     */
    @ApiOperation(value = "获取XCH当前价")
    @GetMapping(value = "/getXchPrice")
    public Result getXchPrice() {
        return yunDingService.getXchPrice();
    }
    /**
     * 获取USDT余额
     */
    @ApiOperation(value = "获取USDT余额")
@@ -90,6 +94,19 @@
    }
    /**
     * 订单详情
     */
    @ApiOperation(value = "订单详情")
    @ApiResponses({
            @ApiResponse(code = 0, message = "success", response = YdOrderVo.class)
    })
    @GetMapping(value = "/getOrderInfo")
    public Result getOrderInfo(@ApiParam(name = "id", value = "订单ID", required = true, example = "1")
                                      @RequestParam(value = "id") Long id) {
        return yunDingService.getOrderInfo(id);
    }
    /**
     *订单头部数据
     */
    @ApiOperation(value = "订单头部数据")
@@ -101,6 +118,69 @@
        return yunDingService.findOrderAllInfo();
    }
    /**
     * 转换成USDT
     */
    @ApiOperation(value = "获取转换成USDT信息")
    @ApiResponses({
            @ApiResponse(code = 0, message = "success", response = ChangeVo.class)
    })
    @GetMapping(value = "/changeUsdt")
    public Result changeUsdt() {
        return yunDingService.changeUsdt();
    }
    /**
     * 确认转换成USDT
     */
    @ApiOperation(value = "确认转换成USDT")
    @PostMapping(value = "/insureChangeUsdt")
    public Result insureChangeUsdt(@RequestBody @Validated InsureChangeUsdtDto insureChangeUsdtdto){
        return yunDingService.insureChangeUsdt(insureChangeUsdtdto);
    }
    /**
     * 获取代理级别列表
     */
    @ApiOperation(value = "获取代理级别列表")
    @ApiResponses({
            @ApiResponse(code = 0, message = "success", response = AgentVo.class)
    })
    @PostMapping(value = "/getAgentList")
    public Result getAgentList(@RequestBody @Validated YdAgentDto ydAgentDto) {
        return yunDingService.getAgentList(ydAgentDto);
    }
    /**
     * 购买代理级别
     */
    @ApiOperation(value = "购买代理级别")
    @PostMapping(value = "/bugAgentLevel")
    public Result bugAgentLevel(@RequestBody @Validated BugAgentLeveldto bugAgentLeveldto){
        return yunDingService.bugAgentLevel(bugAgentLeveldto);
    }
    /**
     * 我的团队信息
     */
    @ApiOperation(value = "我的团队信息")
    @ApiResponses({
            @ApiResponse(code = 0, message = "success", response = TeamVo.class)
    })
    @PostMapping(value = "/getAgentList")
    public Result getTeamList(@RequestBody @Validated TeamInfoDto teamInfoDto) {
        return yunDingService.getTeamList(teamInfoDto);
    }
}