| package com.xcong.excoin.modules.home.controller;  | 
|   | 
| import org.springframework.web.bind.annotation.RequestBody;  | 
| import org.springframework.web.bind.annotation.RequestMapping;  | 
| import org.springframework.web.bind.annotation.RequestMethod;  | 
| import org.springframework.web.bind.annotation.RestController;  | 
|   | 
| import com.xcong.excoin.modules.home.dto.MemberQuickBuySaleDto;  | 
|   | 
| import io.swagger.annotations.ApiImplicitParam;  | 
| import io.swagger.annotations.ApiOperation;  | 
|   | 
| @RestController  | 
| @RequestMapping(value = "/api/quick")  | 
| public class MemberQuickBuySaleController {  | 
|   | 
|     @ApiOperation(value = "USDT快速充值", notes = "USDT快速充值")  | 
|     @ApiImplicitParam(name = "token", value = "token", required = false, dataType = "String", paramType = "body")  | 
|     @RequestMapping(value = "/recharge", method = RequestMethod.POST)  | 
|     public void recharge(@RequestBody MemberQuickBuySaleDto memberQuickBuySaleDto) {  | 
|         // 获取当前登录用户  | 
|         // String mId = (String) redisUtil.get(token);  | 
|           | 
|     }  | 
| }  |