|
|
@ -1,28 +1,28 @@ |
|
|
|
package com.zc.business.controller; |
|
|
|
|
|
|
|
import java.util.List; |
|
|
|
import javax.servlet.http.HttpServletResponse; |
|
|
|
|
|
|
|
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.security.access.prepost.PreAuthorize; |
|
|
|
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.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.zc.business.domain.DcEmployees; |
|
|
|
import com.zc.business.service.IDcEmployeesService; |
|
|
|
import com.ruoyi.common.utils.poi.ExcelUtil; |
|
|
|
import com.ruoyi.common.core.page.TableDataInfo; |
|
|
|
|
|
|
|
import javax.servlet.http.HttpServletResponse; |
|
|
|
import java.util.List; |
|
|
|
|
|
|
|
/** |
|
|
|
* 值班人员信息Controller |
|
|
@ -30,6 +30,7 @@ import com.ruoyi.common.core.page.TableDataInfo; |
|
|
|
* @author ruoyi |
|
|
|
* @date 2024-01-04 |
|
|
|
*/ |
|
|
|
@Api(tags = "人员管理") |
|
|
|
@RestController |
|
|
|
@RequestMapping("/business/employees") |
|
|
|
|
|
|
@ -41,7 +42,7 @@ public class DcEmployeesController extends BaseController |
|
|
|
/** |
|
|
|
* 查询值班人员信息列表 |
|
|
|
*/ |
|
|
|
//@ApiOperation("获取人员信息列表")
|
|
|
|
@ApiOperation("获取人员信息列表") |
|
|
|
@PreAuthorize("@ss.hasPermi('business:employees:list')") |
|
|
|
@GetMapping("/list") |
|
|
|
public TableDataInfo list(DcEmployees dcEmployees) |
|
|
@ -53,7 +54,7 @@ public class DcEmployeesController extends BaseController |
|
|
|
/** |
|
|
|
* 导出值班人员信息列表 |
|
|
|
*/ |
|
|
|
|
|
|
|
@ApiOperation("导出值班人员信息列表") |
|
|
|
//@PreAuthorize("@ss.hasPermi('business:employees:export')")
|
|
|
|
@Log(title = "值班人员信息", businessType = BusinessType.EXPORT) |
|
|
|
@PostMapping("/export") |
|
|
@ -66,7 +67,7 @@ public class DcEmployeesController extends BaseController |
|
|
|
/** |
|
|
|
* 获取值班人员信息详细信息 |
|
|
|
*/ |
|
|
|
//@ApiOperation(value = "获取人员信息详细信息", notes = "获取人员信息详细信息")
|
|
|
|
@ApiOperation("获取人员信息详细信息") |
|
|
|
@PreAuthorize("@ss.hasPermi('business:employees:query')") |
|
|
|
@GetMapping(value = "/{id}") |
|
|
|
public AjaxResult getInfo(@PathVariable("id") Long id) |
|
|
@ -77,7 +78,7 @@ public class DcEmployeesController extends BaseController |
|
|
|
/** |
|
|
|
* 新增值班人员信息 |
|
|
|
*/ |
|
|
|
//@ApiOperation(value = "新增人员信息", notes = "新增人员信息")
|
|
|
|
@ApiOperation("新增人员信息") |
|
|
|
@PreAuthorize("@ss.hasPermi('business:employees:add')") |
|
|
|
@Log(title = "值班人员信息", businessType = BusinessType.INSERT) |
|
|
|
@PostMapping |
|
|
@ -89,7 +90,7 @@ public class DcEmployeesController extends BaseController |
|
|
|
/** |
|
|
|
* 修改值班人员信息 |
|
|
|
*/ |
|
|
|
//@ApiOperation(value = "修改人员信息", notes = "修改人员信息")
|
|
|
|
@ApiOperation("修改人员信息") |
|
|
|
@PreAuthorize("@ss.hasPermi('business:employees:edit')") |
|
|
|
@Log(title = "值班人员信息", businessType = BusinessType.UPDATE) |
|
|
|
@PutMapping |
|
|
@ -101,7 +102,7 @@ public class DcEmployeesController extends BaseController |
|
|
|
/** |
|
|
|
* 删除值班人员信息 |
|
|
|
*/ |
|
|
|
//@ApiOperation(value = "删除人员信息", notes = "删除人员信息")
|
|
|
|
@ApiOperation("删除人员信息") |
|
|
|
@PreAuthorize("@ss.hasPermi('business:employees:remove')") |
|
|
|
@Log(title = "值班人员信息", businessType = BusinessType.DELETE) |
|
|
|
@DeleteMapping("/{ids}") |
|
|
@ -111,23 +112,25 @@ public class DcEmployeesController extends BaseController |
|
|
|
} |
|
|
|
|
|
|
|
//查询全部机构id与名称信息
|
|
|
|
//@ApiOperation(value = "查询全部机构id与名称信息", notes = "查询全部机构id与名称信息")
|
|
|
|
@ApiOperation(value = "查询全部机构id与名称信息") |
|
|
|
@PostMapping("/organization") |
|
|
|
public AjaxResult selectOrganizationAll(){ |
|
|
|
return AjaxResult.success(dcEmployeesService.selectOrganizationAll()); |
|
|
|
} |
|
|
|
//查询全部岗位id与名称信息
|
|
|
|
//@ApiOperation(value = "查询全部岗位id与名称信息", notes = "查询全部岗位id与名称信息")
|
|
|
|
@ApiOperation(value = "查询全部岗位id与名称信息") |
|
|
|
@PostMapping("/sysPost") |
|
|
|
public AjaxResult selectSysPostAll(){ |
|
|
|
return AjaxResult.success(dcEmployeesService.selectSysPostAll()); |
|
|
|
} |
|
|
|
//获取用户信息,按照岗位分组
|
|
|
|
//@ApiOperation(value = "获取用户信息,按照岗位分组", notes = "获取用户信息,按照岗位分组")
|
|
|
|
@ApiOperation(value = "获取用户信息,按照岗位分组") |
|
|
|
@PostMapping("/employeesPostGroup") |
|
|
|
public AjaxResult employeesPostGroup(){ |
|
|
|
return AjaxResult.success(dcEmployeesService.selectEmployeesPost()); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
//获取全部用户信息,以及所在岗位信息
|
|
|
|
@PostMapping("/employeesPostAll") |
|
|
|
public AjaxResult selectEmployeesPostAll(){ |
|
|
|