|
@@ -5,7 +5,6 @@ import org.fouram.core.util.ResultUtil;
|
|
|
import org.fouram.dto.input.MessageUserDeleteDTO;
|
|
|
import org.fouram.dto.input.MessageUserQueryListDTO;
|
|
|
import org.fouram.dto.input.MessageUserSaveDTO;
|
|
|
-import org.fouram.dto.output.MessageUserQueryListOutput;
|
|
|
import org.fouram.service.SapMessageUserService;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.stereotype.Controller;
|
|
@@ -16,8 +15,6 @@ import org.springframework.web.bind.annotation.ResponseBody;
|
|
|
|
|
|
import io.swagger.annotations.Api;
|
|
|
import io.swagger.annotations.ApiOperation;
|
|
|
-import io.swagger.annotations.ApiResponse;
|
|
|
-import io.swagger.annotations.ApiResponses;
|
|
|
|
|
|
@Controller
|
|
|
@Api(value = "消息用户相关接口")
|
|
@@ -27,7 +24,6 @@ public class MessageUserController extends BaseController {
|
|
|
@Autowired
|
|
|
private SapMessageUserService service;
|
|
|
|
|
|
- @ApiResponses(@ApiResponse(response = MessageUserQueryListOutput.class, code = 200, message = "success"))
|
|
|
@ApiOperation(value = "查询发送消息用户列表")
|
|
|
@PostMapping(value = "/queryList", produces = "application/json;charset=utf-8")
|
|
|
@ResponseBody
|