| | |
| | | import com.doumee.core.model.PageData; |
| | | import com.doumee.core.model.PageWrap; |
| | | import com.doumee.core.utils.Constants; |
| | | import com.doumee.dao.business.dto.DataDTO; |
| | | import com.doumee.dao.business.model.YwProject; |
| | | import com.doumee.dao.business.model.YwRoom; |
| | | import com.doumee.dao.business.vo.ProjectDataVO; |
| | | import com.doumee.service.business.YwProjectService; |
| | | import io.swagger.annotations.Api; |
| | | import io.swagger.annotations.ApiOperation; |
| | |
| | | @PostMapping("/create") |
| | | @CloudRequiredPermission("business:ywproject:create") |
| | | public ApiResponse create(@RequestBody YwProject ywProject,@RequestHeader(Constants.HEADER_USER_TOKEN) String token) { |
| | | ywProject.setLoginUserInfo(this.getLoginUser(token)); |
| | | return ApiResponse.success(ywProjectService.create(ywProject)); |
| | | } |
| | | |
| | |
| | | @GetMapping("/delete/{id}") |
| | | @CloudRequiredPermission("business:ywproject:delete") |
| | | public ApiResponse deleteById(@PathVariable Integer id,@RequestHeader(Constants.HEADER_USER_TOKEN) String token) { |
| | | ywProjectService.deleteById(id); |
| | | ywProjectService.deleteById(id,this.getLoginUser(token)); |
| | | return ApiResponse.success(null); |
| | | } |
| | | |
| | |
| | | for (String id : idArray) { |
| | | idList.add(Integer.valueOf(id)); |
| | | } |
| | | ywProjectService.deleteByIdInBatch(idList); |
| | | ywProjectService.deleteByIdInBatch(idList,this.getLoginUser(token)); |
| | | return ApiResponse.success(null); |
| | | } |
| | | |
| | |
| | | @PostMapping("/updateById") |
| | | @CloudRequiredPermission("business:ywproject:update") |
| | | public ApiResponse updateById(@RequestBody YwProject ywProject,@RequestHeader(Constants.HEADER_USER_TOKEN) String token) { |
| | | ywProject.setLoginUserInfo(this.getLoginUser(token)); |
| | | ywProjectService.updateById(ywProject); |
| | | return ApiResponse.success(null); |
| | | } |
| | | |
| | | @ApiOperation("查询列表") |
| | | @PostMapping("/list") |
| | | @CloudRequiredPermission("business:ywproject:query") |
| | | public ApiResponse<List<YwProject>> findList (@RequestBody YwProject pageWrap, @RequestHeader(Constants.HEADER_USER_TOKEN) String token) { |
| | | pageWrap.setLoginUserInfo(this.getLoginUser(token)); |
| | | return ApiResponse.success(ywProjectService.findList(pageWrap)); |
| | | } |
| | | @ApiOperation("分页查询") |
| | | @PostMapping("/page") |
| | | @CloudRequiredPermission("business:ywproject:query") |
| | | public ApiResponse<PageData<YwProject>> findPage (@RequestBody PageWrap<YwProject> pageWrap,@RequestHeader(Constants.HEADER_USER_TOKEN) String token) { |
| | | pageWrap.getModel().setLoginUserInfo(this.getLoginUser(token)); |
| | | return ApiResponse.success(ywProjectService.findPage(pageWrap)); |
| | | } |
| | | |
| | | |
| | | @ApiOperation("项目树") |
| | | @PostMapping("/tree") |
| | | @CloudRequiredPermission("business:ywproject:query") |
| | | public ApiResponse<List<ProjectDataVO>> tree (@RequestBody DataDTO dataDTO, @RequestHeader(Constants.HEADER_USER_TOKEN) String token) { |
| | | return ApiResponse.success(ywProjectService.projectTree(dataDTO)); |
| | | } |
| | | |
| | | |
| | | |
| | | @ApiOperation("导出Excel") |
| | | @PostMapping("/exportExcel") |
| | | @CloudRequiredPermission("business:ywproject:exportExcel") |
| | | public void exportExcel (@RequestBody PageWrap<YwProject> pageWrap, HttpServletResponse response,@RequestHeader(Constants.HEADER_USER_TOKEN) String token) { |
| | | pageWrap.getModel().setLoginUserInfo(this.getLoginUser(token)); |
| | | ExcelExporter.build(YwProject.class).export(ywProjectService.findPage(pageWrap).getRecords(), "运维项目信息表", response); |
| | | } |
| | | |