package com.zc.business.controller; import com.ruoyi.common.annotation.Log; import com.ruoyi.common.core.controller.BaseController; import com.ruoyi.common.core.domain.AjaxResult; import com.ruoyi.common.core.page.TableDataInfo; import com.ruoyi.common.enums.BusinessType; import com.ruoyi.common.utils.poi.ExcelUtil; import com.zc.business.domain.DcEmployees; import com.zc.business.service.IDcEmployeesService; import io.swagger.annotations.Api; import io.swagger.annotations.ApiOperation; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.security.access.prepost.PreAuthorize; import org.springframework.web.bind.annotation.DeleteMapping; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.PutMapping; import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RestController; import javax.servlet.http.HttpServletResponse; import java.util.List; /** * 值班人员信息Controller * * @author ruoyi * @date 2024-01-04 */ @Api(tags = "人员管理") @RestController @RequestMapping("/business/employees") public class DcEmployeesController extends BaseController { @Autowired private IDcEmployeesService dcEmployeesService; /** * 查询值班人员信息列表 */ @ApiOperation("获取人员信息列表") @PreAuthorize("@ss.hasPermi('business:employees:list')") @GetMapping("/list") public TableDataInfo list(DcEmployees dcEmployees) { startPage(); List list = dcEmployeesService.selectDcEmployeesList(dcEmployees); return getDataTable(list); } /** * 导出值班人员信息列表 */ @ApiOperation("导出值班人员信息列表") @PreAuthorize("@ss.hasPermi('business:employees:export')") @Log(title = "值班人员信息", businessType = BusinessType.EXPORT) @PostMapping("/export") public void export(HttpServletResponse response, DcEmployees dcEmployees) { List list = dcEmployeesService.selectDcEmployeesList(dcEmployees); ExcelUtil util = new ExcelUtil<>(DcEmployees.class); util.exportExcel(response, list, "值班人员信息数据"); } /** * 获取值班人员信息详细信息 */ @ApiOperation("获取人员信息详细信息") @PreAuthorize("@ss.hasPermi('business:employees:query')") @GetMapping(value = "/{id}") public AjaxResult getInfo(@PathVariable("id") Long id) { return AjaxResult.success(dcEmployeesService.selectDcEmployeesById(id)); } /** * 新增值班人员信息 */ @ApiOperation("新增人员信息") @PreAuthorize("@ss.hasPermi('business:employees:add')") @Log(title = "值班人员信息", businessType = BusinessType.INSERT) @PostMapping public AjaxResult add(@RequestBody DcEmployees dcEmployees) { return toAjax(dcEmployeesService.insertDcEmployees(dcEmployees)); } /** * 修改值班人员信息 */ @ApiOperation("修改人员信息") @PreAuthorize("@ss.hasPermi('business:employees:edit')") @Log(title = "值班人员信息", businessType = BusinessType.UPDATE) @PutMapping public AjaxResult edit(@RequestBody DcEmployees dcEmployees) { return toAjax(dcEmployeesService.updateDcEmployees(dcEmployees)); } /** * 删除值班人员信息 */ @ApiOperation("删除人员信息") @PreAuthorize("@ss.hasPermi('business:employees:remove')") @Log(title = "值班人员信息", businessType = BusinessType.DELETE) @DeleteMapping("/{ids}") public AjaxResult remove(@PathVariable Long[] ids) { return toAjax(dcEmployeesService.deleteDcEmployeesByIds(ids)); } //查询全部机构id与名称信息 @ApiOperation(value = "查询全部机构id与名称信息") @PostMapping("/organization") public AjaxResult selectOrganizationAll(){ return AjaxResult.success(dcEmployeesService.selectOrganizationAll()); } //查询全部岗位id与名称信息 @ApiOperation(value = "查询全部岗位id与名称信息") @PostMapping("/sysPost") public AjaxResult selectSysPostAll(){ return AjaxResult.success(dcEmployeesService.selectSysPostAll()); } //获取用户信息,按照岗位分组 @ApiOperation(value = "获取用户信息,按照岗位分组") @PostMapping("/employeesPostGroup") public AjaxResult employeesPostGroup(){ return AjaxResult.success(dcEmployeesService.selectEmployeesPost()); } //获取全部用户信息,以及所在岗位信息 @PostMapping("/employeesPostAll") public AjaxResult selectEmployeesPostAll(){ return AjaxResult.success(dcEmployeesService.selectEmployeesPostAll()); } //定时任务,获取值班信息定义人员归属岗位 @PostMapping("/personnelPositions") public AjaxResult personnelPositions(){ return toAjax(dcEmployeesService.personnelPositions()); } }