| | |
| | | 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;
|
| | |
| | | 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;
|
| | |
| | | @PostMapping(value="/usdtToGusd")
|
| | | public Result usdtToGusd(@RequestBody @Valid UsdtToGusdDto usdtToGusdDto) {
|
| | | BigDecimal balance = usdtToGusdDto.getBalance();
|
| | | Integer transfertype = usdtToGusdDto.getTransfertype();
|
| | | return coinService.usdtToGusd(balance,transfertype);
|
| | | return coinService.usdtToGusd(balance);
|
| | | }
|
| | |
|
| | | /**
|
| | | * 质押GUSD
|
| | | */
|
| | | @ApiOperation(value="质押GUSD", notes="质押GUSD")
|
| | | @PostMapping(value="/zhiYaGusd")
|
| | | public Result zhiYaGusd(@RequestBody @Valid ZhiYaGusdDto zhiYaGusdDto) {
|
| | | BigDecimal balance = zhiYaGusdDto.getBalance();
|
| | | return coinService.zhiYaGusd(balance);
|
| | | }
|
| | |
|
| | | /**
|
| | | * 赎回GUSD
|
| | | */
|
| | | @ApiOperation(value="赎回GUSD", notes="赎回GUSD")
|
| | | @PostMapping(value="/shuhuiGusd")
|
| | | public Result shuhuiGusd(@RequestBody @Valid ShuhuiGusdDto shuhuiGusdDto) {
|
| | | BigDecimal balance = shuhuiGusdDto.getBalance();
|
| | | return coinService.shuhuiGusd(balance);
|
| | | }
|
| | |
|
| | |
|