From a8ed6c8a55a3c594716a6ff02d5997c4bbbad09a Mon Sep 17 00:00:00 2001 From: xiaoyong931011 <15274802129@163.com> Date: Wed, 23 Feb 2022 11:36:50 +0800 Subject: [PATCH] 20222223 --- src/main/java/com/xcong/excoin/modules/coin/controller/CoinController.java | 15 +++++++++++---- 1 files changed, 11 insertions(+), 4 deletions(-) diff --git a/src/main/java/com/xcong/excoin/modules/coin/controller/CoinController.java b/src/main/java/com/xcong/excoin/modules/coin/controller/CoinController.java index a1d9f64..12e1d8a 100644 --- a/src/main/java/com/xcong/excoin/modules/coin/controller/CoinController.java +++ b/src/main/java/com/xcong/excoin/modules/coin/controller/CoinController.java @@ -5,7 +5,7 @@ import javax.annotation.Resource; import javax.validation.Valid; -import com.xcong.excoin.modules.coin.parameter.dto.UsdtToGusdDto; +import com.xcong.excoin.modules.coin.parameter.dto.*; import com.xcong.excoin.modules.coin.parameter.vo.AllWalletCoinVo; import com.xcong.excoin.modules.coin.parameter.vo.MemberAccountMoneyChangeInfoVo; import com.xcong.excoin.modules.coin.parameter.vo.MemberAgentIntoInfoVo; @@ -22,9 +22,6 @@ import org.springframework.web.bind.annotation.RestController; import com.xcong.excoin.common.response.Result; -import com.xcong.excoin.modules.coin.parameter.dto.RecordsPageDto; -import com.xcong.excoin.modules.coin.parameter.dto.TransferOfBalanceDto; -import com.xcong.excoin.modules.coin.parameter.dto.TransferOfBalanceFromAgentDto; import com.xcong.excoin.modules.coin.service.CoinService; import lombok.extern.slf4j.Slf4j; @@ -210,6 +207,16 @@ Integer transfertype = usdtToGusdDto.getTransfertype(); return coinService.usdtToGusd(balance,transfertype); } + + /** + * 质押GUSD + */ + @ApiOperation(value="质押GUSD", notes="质押GUSD") + @PostMapping(value="/zhiYaGusd") + public Result zhiYaGusd(@RequestBody @Valid ZhiYaGusdDto zhiYaGusdDto) { + BigDecimal balance = zhiYaGusdDto.getBalance(); + return coinService.zhiYaGusd(balance); + } } -- Gitblit v1.9.1