package com.ruoyi.web.controller; import java.util.List; import javax.servlet.http.HttpServletResponse; import org.springframework.security.access.prepost.PreAuthorize; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.PutMapping; import org.springframework.web.bind.annotation.DeleteMapping; import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; import com.ruoyi.common.annotation.Log; import com.ruoyi.common.core.controller.BaseController; import com.ruoyi.common.core.domain.AjaxResult; import com.ruoyi.common.enums.BusinessType; import com.ruoyi.system.domain.Rooms; import com.ruoyi.system.service.IRoomsService; import com.ruoyi.common.utils.poi.ExcelUtil; import com.ruoyi.common.core.page.TableDataInfo; /** * 项目与任务房间Controller * * @author ruoyi * @date 2026-01-14 */ @RestController @RequestMapping("/system/rooms") public class RoomsController extends BaseController { @Autowired private IRoomsService roomsService; /** * 查询项目与任务房间列表 */ //@PreAuthorize("@ss.hasPermi('system:rooms:list')") @GetMapping("/list") public TableDataInfo list(Rooms rooms) { startPage(); List list = roomsService.selectRoomsList(rooms); return getDataTable(list); } /** * 导出项目与任务房间列表 */ @PreAuthorize("@ss.hasPermi('system:rooms:export')") @Log(title = "项目与任务房间", businessType = BusinessType.EXPORT) @PostMapping("/export") public void export(HttpServletResponse response, Rooms rooms) { List list = roomsService.selectRoomsList(rooms); ExcelUtil util = new ExcelUtil(Rooms.class); util.exportExcel(response, list, "项目与任务房间数据"); } /** * 获取项目与任务房间详细信息 */ @PreAuthorize("@ss.hasPermi('system:rooms:query')") @GetMapping(value = "/{id}") public AjaxResult getInfo(@PathVariable("id") Long id) { return success(roomsService.selectRoomsById(id)); } /** * 新增项目与任务房间 */ @PreAuthorize("@ss.hasPermi('system:rooms:add')") @Log(title = "项目与任务房间", businessType = BusinessType.INSERT) @PostMapping public AjaxResult add(@RequestBody Rooms rooms) { return toAjax(roomsService.insertRooms(rooms)); } /** * 修改项目与任务房间 */ @PreAuthorize("@ss.hasPermi('system:rooms:edit')") @Log(title = "项目与任务房间", businessType = BusinessType.UPDATE) @PutMapping public AjaxResult edit(@RequestBody Rooms rooms) { return toAjax(roomsService.updateRooms(rooms)); } /** * 删除项目与任务房间 */ @PreAuthorize("@ss.hasPermi('system:rooms:remove')") @Log(title = "项目与任务房间", businessType = BusinessType.DELETE) @DeleteMapping("/{ids}") public AjaxResult remove(@PathVariable Long[] ids) { return toAjax(roomsService.deleteRoomsByIds(ids)); } }