forked from integrated_whb/integrated_whb
245 lines
7.0 KiB
Java
245 lines
7.0 KiB
Java
|
package com.zcloud.controller.system;
|
|||
|
|
|||
|
import com.zcloud.controller.base.BaseController;
|
|||
|
import com.zcloud.entity.Page;
|
|||
|
import com.zcloud.entity.PageData;
|
|||
|
import com.zcloud.service.system.PostService;
|
|||
|
import com.zcloud.util.DateUtil;
|
|||
|
import com.zcloud.util.Jurisdiction;
|
|||
|
import com.zcloud.util.ObjectExcelView;
|
|||
|
import com.zcloud.util.Tools;
|
|||
|
import org.apache.shiro.authz.annotation.RequiresPermissions;
|
|||
|
import org.springframework.beans.factory.annotation.Autowired;
|
|||
|
import org.springframework.stereotype.Controller;
|
|||
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|||
|
import org.springframework.web.bind.annotation.ResponseBody;
|
|||
|
import org.springframework.web.servlet.ModelAndView;
|
|||
|
|
|||
|
import java.util.*;
|
|||
|
|
|||
|
/**
|
|||
|
* 说明:岗位管理
|
|||
|
* 作者:luoxiaobao
|
|||
|
* 时间:2020-12-28
|
|||
|
* 官网:www.zcloudchina.com
|
|||
|
*/
|
|||
|
@Controller
|
|||
|
@RequestMapping("/post")
|
|||
|
public class PostController extends BaseController {
|
|||
|
|
|||
|
@Autowired
|
|||
|
private PostService postService;
|
|||
|
|
|||
|
/**新增
|
|||
|
* @param
|
|||
|
* @throws Exception
|
|||
|
*/
|
|||
|
@RequestMapping(value="/add")
|
|||
|
@RequiresPermissions("post:add")
|
|||
|
@ResponseBody
|
|||
|
public Object add() throws Exception{
|
|||
|
Map<String,Object> map = new HashMap<String,Object>();
|
|||
|
String errInfo = "success";
|
|||
|
PageData pd = new PageData();
|
|||
|
pd = this.getPageData();
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
pd.put("POST_ID", this.get32UUID()); //主键
|
|||
|
pd.put("CORPINFO_ID", Jurisdiction.getCORPINFO_ID()); //企业
|
|||
|
pd.put("ISDELETE", "0"); //是否删除
|
|||
|
pd.put("CREATOR",Jurisdiction.getUsername()); //添加人
|
|||
|
pd.put("CREATTIME", DateUtil.date2Str(new Date())); //创建时间
|
|||
|
pd.put("OPERATOR", Jurisdiction.getUsername()); //修改人
|
|||
|
pd.put("OPERATTIME", DateUtil.date2Str(new Date())); //修改时间
|
|||
|
postService.save(pd);
|
|||
|
map.put("result", errInfo);
|
|||
|
return map;
|
|||
|
}
|
|||
|
|
|||
|
/**删除
|
|||
|
* @param out
|
|||
|
* @throws Exception
|
|||
|
*/
|
|||
|
@RequestMapping(value="/delete")
|
|||
|
@RequiresPermissions("post:del")
|
|||
|
@ResponseBody
|
|||
|
public Object delete() throws Exception{
|
|||
|
Map<String,String> map = new HashMap<String,String>();
|
|||
|
String errInfo = "success";
|
|||
|
PageData pd = new PageData();
|
|||
|
pd = this.getPageData();
|
|||
|
postService.delete(pd);
|
|||
|
map.put("result", errInfo); //返回结果
|
|||
|
return map;
|
|||
|
}
|
|||
|
|
|||
|
/**修改
|
|||
|
* @param
|
|||
|
* @throws Exception
|
|||
|
*/
|
|||
|
@RequestMapping(value="/edit")
|
|||
|
@RequiresPermissions("post:edit")
|
|||
|
@ResponseBody
|
|||
|
public Object edit() throws Exception{
|
|||
|
Map<String,Object> map = new HashMap<String,Object>();
|
|||
|
String errInfo = "success";
|
|||
|
PageData pd = new PageData();
|
|||
|
pd = this.getPageData();
|
|||
|
postService.edit(pd);
|
|||
|
map.put("result", errInfo);
|
|||
|
return map;
|
|||
|
}
|
|||
|
|
|||
|
/**列表
|
|||
|
* @param page
|
|||
|
* @throws Exception
|
|||
|
*/
|
|||
|
@RequestMapping(value="/list")
|
|||
|
@RequiresPermissions("post:list")
|
|||
|
@ResponseBody
|
|||
|
public Object list(Page page) throws Exception{
|
|||
|
Map<String,Object> map = new HashMap<String,Object>();
|
|||
|
String errInfo = "success";
|
|||
|
PageData pd = new PageData();
|
|||
|
pd = this.getPageData();
|
|||
|
String KEYWORDS = pd.getString("KEYWORDS"); //关键词检索条件
|
|||
|
if(Tools.notEmpty(KEYWORDS))pd.put("KEYWORDS", KEYWORDS.trim());
|
|||
|
page.setPd(pd);
|
|||
|
List<PageData> varList = postService.list(page); //列出Post列表
|
|||
|
map.put("varList", varList);
|
|||
|
map.put("page", page);
|
|||
|
map.put("result", errInfo);
|
|||
|
return map;
|
|||
|
}
|
|||
|
|
|||
|
/**列表
|
|||
|
* @param page
|
|||
|
* @throws Exception
|
|||
|
*/
|
|||
|
@RequestMapping(value="/listAll")
|
|||
|
@ResponseBody
|
|||
|
public Object listAll() throws Exception{
|
|||
|
Map<String,Object> map = new HashMap<String,Object>();
|
|||
|
String errInfo = "success";
|
|||
|
PageData pd = new PageData();
|
|||
|
pd = this.getPageData();
|
|||
|
pd.put("STATUS", 0);
|
|||
|
List<PageData> varList = postService.listAll(pd); //列出Post列表
|
|||
|
map.put("postList", varList);
|
|||
|
map.put("result", errInfo);
|
|||
|
return map;
|
|||
|
}
|
|||
|
|
|||
|
/**去修改页面获取数据
|
|||
|
* @param
|
|||
|
* @throws Exception
|
|||
|
*/
|
|||
|
@RequestMapping(value="/goEdit")
|
|||
|
@RequiresPermissions("post:edit")
|
|||
|
@ResponseBody
|
|||
|
public Object goEdit() throws Exception{
|
|||
|
Map<String,Object> map = new HashMap<String,Object>();
|
|||
|
String errInfo = "success";
|
|||
|
PageData pd = new PageData();
|
|||
|
pd = this.getPageData();
|
|||
|
pd = postService.findById(pd); //根据ID读取
|
|||
|
map.put("pd", pd);
|
|||
|
map.put("result", errInfo);
|
|||
|
return map;
|
|||
|
}
|
|||
|
|
|||
|
/**批量删除
|
|||
|
* @param
|
|||
|
* @throws Exception
|
|||
|
*/
|
|||
|
@RequestMapping(value="/deleteAll")
|
|||
|
@RequiresPermissions("post:del")
|
|||
|
@ResponseBody
|
|||
|
public Object deleteAll() throws Exception{
|
|||
|
Map<String,Object> map = new HashMap<String,Object>();
|
|||
|
String errInfo = "success";
|
|||
|
PageData pd = new PageData();
|
|||
|
pd = this.getPageData();
|
|||
|
String DATA_IDS = pd.getString("DATA_IDS");
|
|||
|
if(Tools.notEmpty(DATA_IDS)){
|
|||
|
String ArrayDATA_IDS[] = DATA_IDS.split(",");
|
|||
|
postService.deleteAll(ArrayDATA_IDS);
|
|||
|
errInfo = "success";
|
|||
|
}else{
|
|||
|
errInfo = "error";
|
|||
|
}
|
|||
|
map.put("result", errInfo); //返回结果
|
|||
|
return map;
|
|||
|
}
|
|||
|
|
|||
|
/**导出到excel
|
|||
|
* @param
|
|||
|
* @throws Exception
|
|||
|
*/
|
|||
|
@RequestMapping(value="/excel")
|
|||
|
@RequiresPermissions("toExcel")
|
|||
|
public ModelAndView exportExcel() throws Exception{
|
|||
|
ModelAndView mv = new ModelAndView();
|
|||
|
PageData pd = new PageData();
|
|||
|
pd = this.getPageData();
|
|||
|
Map<String,Object> dataMap = new HashMap<String,Object>();
|
|||
|
List<String> titles = new ArrayList<String>();
|
|||
|
titles.add("机构"); //1
|
|||
|
titles.add("名称"); //2
|
|||
|
titles.add("备注"); //3
|
|||
|
titles.add("状态"); //4
|
|||
|
titles.add("是否删除"); //5
|
|||
|
titles.add("添加人"); //6
|
|||
|
titles.add("创建时间"); //7
|
|||
|
titles.add("修改人"); //8
|
|||
|
titles.add("修改时间"); //9
|
|||
|
dataMap.put("titles", titles);
|
|||
|
List<PageData> varOList = postService.listAll(pd);
|
|||
|
List<PageData> varList = new ArrayList<PageData>();
|
|||
|
for(int i=0;i<varOList.size();i++){
|
|||
|
PageData vpd = new PageData();
|
|||
|
vpd.put("var1", varOList.get(i).getString("DEPARTMENT_ID")); //1
|
|||
|
vpd.put("var2", varOList.get(i).getString("NAME")); //2
|
|||
|
vpd.put("var3", varOList.get(i).getString("DESCR")); //3
|
|||
|
vpd.put("var4", varOList.get(i).getString("STATUS")); //4
|
|||
|
vpd.put("var5", varOList.get(i).get("ISDELETE").toString()); //5
|
|||
|
vpd.put("var6", varOList.get(i).getString("CREATOR")); //6
|
|||
|
vpd.put("var7", varOList.get(i).getString("CREATTIME")); //7
|
|||
|
vpd.put("var8", varOList.get(i).getString("OPERATOR")); //8
|
|||
|
vpd.put("var9", varOList.get(i).getString("OPERATTIME")); //9
|
|||
|
varList.add(vpd);
|
|||
|
}
|
|||
|
dataMap.put("varList", varList);
|
|||
|
ObjectExcelView erv = new ObjectExcelView();
|
|||
|
mv = new ModelAndView(erv,dataMap);
|
|||
|
return mv;
|
|||
|
}
|
|||
|
/**判断同等级的名字是否重复
|
|||
|
* @return
|
|||
|
*/
|
|||
|
@RequestMapping(value="/hasName")
|
|||
|
@ResponseBody
|
|||
|
public Object hasName() throws Exception{
|
|||
|
Map<String,String> map = new HashMap<String,String>();
|
|||
|
String errInfo = "success";
|
|||
|
PageData pd = new PageData();
|
|||
|
pd = this.getPageData();
|
|||
|
|
|||
|
PageData parentDepePd = new PageData();
|
|||
|
parentDepePd.put("NAME", pd.getString("name"));
|
|||
|
parentDepePd.put("DEPARTMENT_ID", pd.getString("DEPARTMENT_ID"));
|
|||
|
parentDepePd.put("CORPINFO_ID", Jurisdiction.getCORPINFO_ID());
|
|||
|
//就是父id相同的名字
|
|||
|
List<PageData> parent = postService.findByNameAndDepartment(parentDepePd);
|
|||
|
if(parent.size()>0) {
|
|||
|
errInfo = "error";
|
|||
|
}
|
|||
|
map.put("result", errInfo); //返回结果
|
|||
|
return map;
|
|||
|
}
|
|||
|
|
|||
|
}
|