package com.oying.modules.maint.rest;
|
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
import com.oying.modules.maint.domain.DeployHistory;
|
import com.oying.modules.maint.domain.dto.DeployHistoryQueryCriteria;
|
import com.oying.modules.maint.service.DeployHistoryService;
|
import io.swagger.annotations.Api;
|
import io.swagger.annotations.ApiOperation;
|
import lombok.RequiredArgsConstructor;
|
import com.oying.annotation.Log;
|
import com.oying.utils.PageResult;
|
import org.springframework.http.HttpStatus;
|
import org.springframework.http.ResponseEntity;
|
import org.springframework.security.access.prepost.PreAuthorize;
|
import org.springframework.web.bind.annotation.*;
|
|
import javax.servlet.http.HttpServletResponse;
|
import java.io.IOException;
|
import java.util.Set;
|
|
/**
|
* @author Z
|
* @date 2019-08-24
|
*/
|
@RestController
|
@RequiredArgsConstructor
|
@Api(tags = "运维:部署历史管理")
|
@RequestMapping("/api/deployHistory")
|
public class DeployHistoryController {
|
|
private final DeployHistoryService deployhistoryService;
|
|
@ApiOperation("导出部署历史数据")
|
@GetMapping(value = "/download")
|
@PreAuthorize("@el.check('deployHistory:list')")
|
public void exportDeployHistory(HttpServletResponse response, DeployHistoryQueryCriteria criteria) throws IOException {
|
deployhistoryService.download(deployhistoryService.queryAll(criteria), response);
|
}
|
|
@ApiOperation(value = "查询部署历史")
|
@GetMapping
|
@PreAuthorize("@el.check('deployHistory:list')")
|
public ResponseEntity<PageResult<DeployHistory>> queryDeployHistory(DeployHistoryQueryCriteria criteria){
|
Page<Object> page = new Page<>(criteria.getPage(), criteria.getSize());
|
return new ResponseEntity<>(deployhistoryService.queryAll(criteria, page),HttpStatus.OK);
|
}
|
|
@Log("删除DeployHistory")
|
@ApiOperation(value = "删除部署历史")
|
@DeleteMapping
|
@PreAuthorize("@el.check('deployHistory:del')")
|
public ResponseEntity<Object> deleteDeployHistory(@RequestBody Set<String> ids){
|
deployhistoryService.delete(ids);
|
return new ResponseEntity<>(HttpStatus.OK);
|
}
|
}
|