123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145 |
- package com.ruoyi.web.controller.system;
- import java.util.List;
- import org.apache.shiro.authz.annotation.RequiresPermissions;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.stereotype.Controller;
- import org.springframework.ui.ModelMap;
- 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.RequestMapping;
- import org.springframework.web.bind.annotation.ResponseBody;
- import com.ruoyi.common.annotation.Log;
- import com.ruoyi.common.base.AjaxResult;
- import com.ruoyi.common.enums.BusinessType;
- import com.ruoyi.common.utils.ExcelUtil;
- import com.ruoyi.framework.util.ShiroUtils;
- import com.ruoyi.framework.web.page.TableDataInfo;
- import com.ruoyi.system.domain.SysPost;
- import com.ruoyi.system.service.ISysPostService;
- import com.ruoyi.framework.web.base.BaseController;
- /**
- * 岗位信息操作处理
- *
- * @author ruoyi
- */
- @Controller
- @RequestMapping("/system/post")
- public class SysPostController extends BaseController
- {
- private String prefix = "system/post";
- @Autowired
- private ISysPostService postService;
- @RequiresPermissions("system:post:view")
- @GetMapping()
- public String operlog()
- {
- return prefix + "/post";
- }
- @RequiresPermissions("system:post:list")
- @PostMapping("/list")
- @ResponseBody
- public TableDataInfo list(SysPost post)
- {
- startPage();
- List<SysPost> list = postService.selectPostList(post);
- return getDataTable(list);
- }
- @Log(title = "岗位管理", businessType = BusinessType.EXPORT)
- @RequiresPermissions("system:post:export")
- @PostMapping("/export")
- @ResponseBody
- public AjaxResult export(SysPost post)
- {
- List<SysPost> list = postService.selectPostList(post);
- ExcelUtil<SysPost> util = new ExcelUtil<SysPost>(SysPost.class);
- return util.exportExcel(list, "post");
- }
- @RequiresPermissions("system:post:remove")
- @Log(title = "岗位管理", businessType = BusinessType.DELETE)
- @PostMapping("/remove")
- @ResponseBody
- public AjaxResult remove(String ids)
- {
- try
- {
- return toAjax(postService.deletePostByIds(ids));
- }
- catch (Exception e)
- {
- return error(e.getMessage());
- }
- }
- /**
- * 新增岗位
- */
- @GetMapping("/add")
- public String add()
- {
- return prefix + "/add";
- }
- /**
- * 新增保存岗位
- */
- @RequiresPermissions("system:post:add")
- @Log(title = "岗位管理", businessType = BusinessType.INSERT)
- @PostMapping("/add")
- @ResponseBody
- public AjaxResult addSave(SysPost post)
- {
- post.setCreateBy(ShiroUtils.getLoginName());
- return toAjax(postService.insertPost(post));
- }
- /**
- * 修改岗位
- */
- @GetMapping("/edit/{postId}")
- public String edit(@PathVariable("postId") Long postId, ModelMap mmap)
- {
- mmap.put("post", postService.selectPostById(postId));
- return prefix + "/edit";
- }
- /**
- * 修改保存岗位
- */
- @RequiresPermissions("system:post:edit")
- @Log(title = "岗位管理", businessType = BusinessType.UPDATE)
- @PostMapping("/edit")
- @ResponseBody
- public AjaxResult editSave(SysPost post)
- {
- post.setUpdateBy(ShiroUtils.getLoginName());
- return toAjax(postService.updatePost(post));
- }
- /**
- * 校验岗位名称
- */
- @PostMapping("/checkPostNameUnique")
- @ResponseBody
- public String checkPostNameUnique(SysPost post)
- {
- return postService.checkPostNameUnique(post);
- }
- /**
- * 校验岗位编码
- */
- @PostMapping("/checkPostCodeUnique")
- @ResponseBody
- public String checkPostCodeUnique(SysPost post)
- {
- return postService.checkPostCodeUnique(post);
- }
- }
|