PersonnelEvaluationRuleController.java 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. package com.ims.eval.controller;
  2. import com.baomidou.mybatisplus.core.metadata.IPage;
  3. import com.ims.eval.config.CustomException;
  4. import com.ims.eval.entity.dto.result.R;
  5. import com.ims.eval.entity.PersonnelEvaluationRule;
  6. import com.ims.eval.service.IPersonnelEvaluationRuleService;
  7. import io.swagger.annotations.ApiOperation;
  8. import org.springframework.beans.factory.annotation.Autowired;
  9. import org.springframework.web.bind.annotation.*;
  10. import java.util.Arrays;
  11. import java.util.List;
  12. /**
  13. * <p>
  14. * 考评人员配置 前端控制器
  15. * </p>
  16. *
  17. * @author wang
  18. * @since 2023-03-01
  19. */
  20. @RestController
  21. @RequestMapping("//personnel-evaluation-rule")
  22. public class PersonnelEvaluationRuleController {
  23. @Autowired
  24. private IPersonnelEvaluationRuleService personnelEvaluationRuleService;
  25. /**
  26. * 分页查询
  27. *
  28. * @param pageNum 当前页数
  29. * @param pageSize 当前页大小
  30. * @param id 主键ID
  31. * @param personnelId 人员编码
  32. * @param personnelName 人员名称
  33. * @param companyId 所属共公司ID
  34. * @param companyName 所属公司名称
  35. * @param deptId 所属部门
  36. * @param position 所属部门名称
  37. * @param evaluationCycle 人员岗位
  38. * @param year 年
  39. * @param month 月
  40. * @return
  41. */
  42. //@ImsPreAuth("eval:personnelEvaluationRule:view")
  43. @GetMapping(value = "list")
  44. public R list(@RequestParam(value = "pageNum") Integer pageNum,
  45. @RequestParam(value = "pageSize") Integer pageSize,
  46. @RequestParam(value = "id", required = false) String id,
  47. @RequestParam(value = "personnelId", required = false) String personnelId,
  48. @RequestParam(value = "personnelName", required = false) String personnelName,
  49. @RequestParam(value = "companyId", required = false) String companyId,
  50. @RequestParam(value = "companyName", required = false) String companyName,
  51. @RequestParam(value = "deptId", required = false) String deptId,
  52. @RequestParam(value = "position", required = false) String position,
  53. @RequestParam(value = "evaluationCycle", required = false) String evaluationCycle,
  54. @RequestParam(value = "year", required = false) String year,
  55. @RequestParam(value = "month", required = false) String month) {
  56. IPage<PersonnelEvaluationRule> list = personnelEvaluationRuleService.list(pageNum, pageSize, id, personnelId, personnelName, companyId, companyName, deptId, position, evaluationCycle, year, month);
  57. return R.ok().data(list);
  58. }
  59. /**
  60. * 查询所有数据
  61. *
  62. * @param id 主键ID
  63. * @param personnelId 人员编码
  64. * @param personnelName 人员名称
  65. * @param companyId 所属共公司ID
  66. * @param companyName 所属公司名称
  67. * @param deptId 所属部门
  68. * @param position 所属部门名称
  69. * @param evaluationCycle 人员岗位
  70. * @param year 年
  71. * @param month 月
  72. * @return
  73. */
  74. //@ImsPreAuth("eval:personnelEvaluationRule:view")
  75. @GetMapping(value = "listAll")
  76. public R listAll(
  77. @RequestParam(value = "id", required = false) String id,
  78. @RequestParam(value = "personnelId", required = false) String personnelId,
  79. @RequestParam(value = "personnelName", required = false) String personnelName,
  80. @RequestParam(value = "companyId", required = false) String companyId,
  81. @RequestParam(value = "companyName", required = false) String companyName,
  82. @RequestParam(value = "deptId", required = false) String deptId,
  83. @RequestParam(value = "position", required = false) String position,
  84. @RequestParam(value = "evaluationCycle", required = false) String evaluationCycle,
  85. @RequestParam(value = "year", required = false) String year,
  86. @RequestParam(value = "month", required = false) String month) {
  87. List<PersonnelEvaluationRule> list = personnelEvaluationRuleService.listAll(id, personnelId, personnelName, companyId, companyName, deptId, position, evaluationCycle, year, month);
  88. return R.ok().data(list);
  89. }
  90. /**
  91. * 添加
  92. *
  93. * @param evaluationRule
  94. * @return
  95. */
  96. //@ImsPreAuth("eval:personnelEvaluationRule:edit")
  97. @PostMapping(value = "/save")
  98. @ApiOperation(value = "新增(修改)", notes = "新增(修改)")
  99. public R addAll(@RequestBody PersonnelEvaluationRule evaluationRule) {
  100. try {
  101. boolean b = personnelEvaluationRuleService.saveOrUpdate(evaluationRule);
  102. if (b) {
  103. return R.ok().data(b);
  104. } else {
  105. return R.error().data("保存失败!");
  106. }
  107. } catch (CustomException e) {
  108. return R.customError(e.getMessage()).data("失败!");
  109. }
  110. }
  111. /**
  112. * 批量删除
  113. *
  114. * @param ids
  115. * @return
  116. */
  117. //@ImsPreAuth("eval:personnelEvaluationRule:remove")
  118. @PostMapping(value = "/remove/{ids}")
  119. @ApiOperation(value = "删除", notes = "删除")
  120. public R deleteAll(@PathVariable("ids") String ids) {
  121. String[] strings = ids.split(",");
  122. boolean b = personnelEvaluationRuleService.removeByIds(Arrays.asList(strings));
  123. if (b) {
  124. return R.ok().data(b);
  125. } else {
  126. return R.error().data("删除失败!");
  127. }
  128. }
  129. }