gao
2020-05-21 63368d374f7c57bd05eb65eac2023e4698d1a7af
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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);
        
    }
}