SysPostController.java 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. package com.ruoyi.web.controller.system;
  2. import java.util.List;
  3. import javax.servlet.http.HttpServletResponse;
  4. import org.springframework.beans.factory.annotation.Autowired;
  5. import org.springframework.security.access.prepost.PreAuthorize;
  6. import org.springframework.validation.annotation.Validated;
  7. import org.springframework.web.bind.annotation.DeleteMapping;
  8. import org.springframework.web.bind.annotation.GetMapping;
  9. import org.springframework.web.bind.annotation.PathVariable;
  10. import org.springframework.web.bind.annotation.PostMapping;
  11. import org.springframework.web.bind.annotation.PutMapping;
  12. import org.springframework.web.bind.annotation.RequestBody;
  13. import org.springframework.web.bind.annotation.RequestMapping;
  14. import org.springframework.web.bind.annotation.RestController;
  15. import com.ruoyi.common.annotation.Log;
  16. import com.ruoyi.common.constant.UserConstants;
  17. import com.ruoyi.common.core.controller.BaseController;
  18. import com.ruoyi.common.core.domain.AjaxResult;
  19. import com.ruoyi.common.core.page.TableDataInfo;
  20. import com.ruoyi.common.enums.BusinessType;
  21. import com.ruoyi.common.utils.poi.ExcelUtil;
  22. import com.ruoyi.system.domain.SysPost;
  23. import com.ruoyi.system.service.ISysPostService;
  24. /**
  25. * 岗位信息操作处理
  26. *
  27. * @author ruoyi
  28. */
  29. @RestController
  30. @RequestMapping("/system/post")
  31. public class SysPostController extends BaseController
  32. {
  33. @Autowired
  34. private ISysPostService postService;
  35. /**
  36. * 获取岗位列表
  37. */
  38. @PreAuthorize("@ss.hasPermi('system:post:list')")
  39. @GetMapping("/list")
  40. public TableDataInfo list(SysPost post)
  41. {
  42. startPage();
  43. List<SysPost> list = postService.selectPostList(post);
  44. return getDataTable(list);
  45. }
  46. @Log(title = "岗位管理", businessType = BusinessType.EXPORT)
  47. @PreAuthorize("@ss.hasPermi('system:post:export')")
  48. @PostMapping("/export")
  49. public void export(HttpServletResponse response, SysPost post)
  50. {
  51. List<SysPost> list = postService.selectPostList(post);
  52. ExcelUtil<SysPost> util = new ExcelUtil<SysPost>(SysPost.class);
  53. util.exportExcel(response, list, "岗位数据");
  54. }
  55. /**
  56. * 根据岗位编号获取详细信息
  57. */
  58. @PreAuthorize("@ss.hasPermi('system:post:query')")
  59. @GetMapping(value = "/{postId}")
  60. public AjaxResult getInfo(@PathVariable Long postId)
  61. {
  62. return AjaxResult.success(postService.selectPostById(postId));
  63. }
  64. /**
  65. * 新增岗位
  66. */
  67. @PreAuthorize("@ss.hasPermi('system:post:add')")
  68. @Log(title = "岗位管理", businessType = BusinessType.INSERT)
  69. @PostMapping
  70. public AjaxResult add(@Validated @RequestBody SysPost post)
  71. {
  72. if (UserConstants.NOT_UNIQUE.equals(postService.checkPostNameUnique(post)))
  73. {
  74. return AjaxResult.error("新增岗位'" + post.getPostName() + "'失败,岗位名称已存在");
  75. }
  76. else if (UserConstants.NOT_UNIQUE.equals(postService.checkPostCodeUnique(post)))
  77. {
  78. return AjaxResult.error("新增岗位'" + post.getPostName() + "'失败,岗位编码已存在");
  79. }
  80. post.setCreateBy(getUsername());
  81. return toAjax(postService.insertPost(post));
  82. }
  83. /**
  84. * 修改岗位
  85. */
  86. @PreAuthorize("@ss.hasPermi('system:post:edit')")
  87. @Log(title = "岗位管理", businessType = BusinessType.UPDATE)
  88. @PutMapping
  89. public AjaxResult edit(@Validated @RequestBody SysPost post)
  90. {
  91. if (UserConstants.NOT_UNIQUE.equals(postService.checkPostNameUnique(post)))
  92. {
  93. return AjaxResult.error("修改岗位'" + post.getPostName() + "'失败,岗位名称已存在");
  94. }
  95. else if (UserConstants.NOT_UNIQUE.equals(postService.checkPostCodeUnique(post)))
  96. {
  97. return AjaxResult.error("修改岗位'" + post.getPostName() + "'失败,岗位编码已存在");
  98. }
  99. post.setUpdateBy(getUsername());
  100. return toAjax(postService.updatePost(post));
  101. }
  102. /**
  103. * 删除岗位
  104. */
  105. @PreAuthorize("@ss.hasPermi('system:post:remove')")
  106. @Log(title = "岗位管理", businessType = BusinessType.DELETE)
  107. @DeleteMapping("/{postIds}")
  108. public AjaxResult remove(@PathVariable Long[] postIds)
  109. {
  110. return toAjax(postService.deletePostByIds(postIds));
  111. }
  112. /**
  113. * 获取岗位选择框列表
  114. */
  115. @GetMapping("/optionselect")
  116. public AjaxResult optionselect()
  117. {
  118. List<SysPost> posts = postService.selectPostAll();
  119. return AjaxResult.success(posts);
  120. }
  121. }