package com.oying.modules.message.rest;
|
|
import com.oying.annotation.Log;
|
import com.oying.modules.message.domain.MessageSystem;
|
import com.oying.modules.message.service.MessageSystemService;
|
import com.oying.modules.message.domain.dto.MessageSystemQueryCriteria;
|
import lombok.RequiredArgsConstructor;
|
import java.util.List;
|
import org.springframework.http.HttpStatus;
|
import org.springframework.http.ResponseEntity;
|
import org.springframework.security.access.prepost.PreAuthorize;
|
import org.springframework.validation.annotation.Validated;
|
import org.springframework.web.bind.annotation.*;
|
import io.swagger.annotations.*;
|
import java.io.IOException;
|
import javax.servlet.http.HttpServletResponse;
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
import com.oying.utils.PageResult;
|
|
/**
|
* @author 李萌
|
* @date 2025-05-20
|
**/
|
@RestController
|
@RequiredArgsConstructor
|
@Api(tags = "消息_系统")
|
@RequestMapping("/api/messageSystem")
|
public class MessageSystemController {
|
|
private final MessageSystemService messageSystemService;
|
|
@ApiOperation("导出数据")
|
@GetMapping(value = "/download")
|
@PreAuthorize("@el.check('messageSystem:list')")
|
public void exportMessageSystem(HttpServletResponse response, MessageSystemQueryCriteria criteria) throws IOException {
|
messageSystemService.download(messageSystemService.queryAll(criteria), response);
|
}
|
|
@GetMapping
|
@ApiOperation("查询消息_系统")
|
@PreAuthorize("@el.check('messageSystem:list')")
|
public ResponseEntity<PageResult<MessageSystem>> queryMessageSystem(MessageSystemQueryCriteria criteria){
|
Page<Object> page = new Page<>(criteria.getPage(), criteria.getSize());
|
return new ResponseEntity<>(messageSystemService.queryAll(criteria,page),HttpStatus.OK);
|
}
|
|
@PostMapping
|
@Log("新增消息_系统")
|
@ApiOperation("新增消息_系统")
|
@PreAuthorize("@el.check('messageSystem:add')")
|
public ResponseEntity<Object> createMessageSystem(@Validated @RequestBody MessageSystem resources){
|
messageSystemService.create(resources);
|
return new ResponseEntity<>(HttpStatus.CREATED);
|
}
|
|
@PutMapping
|
@Log("修改消息_系统")
|
@ApiOperation("修改消息_系统")
|
@PreAuthorize("@el.check('messageSystem:edit')")
|
public ResponseEntity<Object> updateMessageSystem(@Validated @RequestBody MessageSystem resources){
|
messageSystemService.update(resources);
|
return new ResponseEntity<>(HttpStatus.NO_CONTENT);
|
}
|
|
@DeleteMapping
|
@Log("删除消息_系统")
|
@ApiOperation("删除消息_系统")
|
@PreAuthorize("@el.check('messageSystem:del')")
|
public ResponseEntity<Object> deleteMessageSystem(@ApiParam(value = "传ID数组[]") @RequestBody List<Integer> ids) {
|
messageSystemService.deleteAll(ids);
|
return new ResponseEntity<>(HttpStatus.OK);
|
}
|
}
|