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; } }