| | |
| | | package com.xcong.excoin.modules.home.controller;
|
| | |
|
| | | import javax.validation.Valid;
|
| | |
|
| | | import org.springframework.beans.factory.annotation.Autowired;
|
| | | import org.springframework.web.bind.annotation.GetMapping;
|
| | | import org.springframework.web.bind.annotation.PathVariable;
|
| | |
| | |
|
| | | @ApiOperation(value = "recharge", notes = "USDT快速充值")
|
| | | @RequestMapping(value = "/recharge", method = RequestMethod.POST)
|
| | | public Result recharge(@RequestBody MemberQuickBuySaleDto memberQuickBuySaleDto) {
|
| | | public Result recharge(@RequestBody @Valid MemberQuickBuySaleDto memberQuickBuySaleDto) {
|
| | | log.info("入参----->{}", memberQuickBuySaleDto);
|
| | | //获取用户ID
|
| | | MemberEntity member = LoginUserUtils.getAppLoginUser();
|