xiaoyong931011
2022-02-21 6258b45b69d75325b7d6df7edf2761c22a87369b
src/main/java/com/xcong/excoin/modules/coin/controller/CoinController.java
@@ -5,6 +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.vo.AllWalletCoinVo;
import com.xcong.excoin.modules.coin.parameter.vo.MemberAccountMoneyChangeInfoVo;
import com.xcong.excoin.modules.coin.parameter.vo.MemberAgentIntoInfoVo;
@@ -198,5 +199,17 @@
      return coinService.agentTransferToWalletCoin(balance,transfertype);
   }
   
   /**
    * USDT兌換成GUSD
    * @return
    */
   @ApiOperation(value="USDT兌換成GUSD", notes="USDT兌換成GUSD")
   @PostMapping(value="/usdtToGusd")
   public Result  usdtToGusd(@RequestBody @Valid UsdtToGusdDto usdtToGusdDto) {
      BigDecimal balance = usdtToGusdDto.getBalance();
      Integer transfertype = usdtToGusdDto.getTransfertype();
      return coinService.usdtToGusd(balance,transfertype);
   }
}