xiaoyong931011
2021-05-25 be56dcfa574c8c26b70c7be939bf563bbeef3ad8
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
26
27
28
29
30
31
32
33
package com.xcong.excoin.modules.otc.controller;
 
 
import com.xcong.excoin.common.response.Result;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import lombok.extern.slf4j.Slf4j;
import org.springframework.validation.annotation.Validated;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
 
@Slf4j
@Validated
@RestController
@RequestMapping(value = "/api/black")
@Api(value = "OtcBlackListController", tags = "黑名单列表接口类")
public class OtcBlackListController {
 
    @ApiOperation(value = "添加黑名单")
    @PostMapping(value = "/add")
    public Result add() {
        return null;
    }
 
    public Result blackList() {
        return null;
    }
 
    public Result del() {
        return null;
    }
}