diff --git a/src/main/java/com/zcloud/controller/eightwork/AppLimitSpaceController.java b/src/main/java/com/zcloud/controller/eightwork/AppLimitSpaceController.java new file mode 100644 index 0000000..babe760 --- /dev/null +++ b/src/main/java/com/zcloud/controller/eightwork/AppLimitSpaceController.java @@ -0,0 +1,244 @@ +package com.zcloud.controller.eightwork; + +import com.zcloud.controller.base.BaseController; +import com.zcloud.entity.Page; +import com.zcloud.entity.PageData; +import com.zcloud.logs.LogAnno; +import com.zcloud.service.eightwork.LimitSpaceService; +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 + * 时间:2021-04-02 + * 官网:www.zcloudchina.com + */ +@Controller +@RequestMapping("/app/limitspace") +public class AppLimitSpaceController extends BaseController { + + @Autowired + private LimitSpaceService limitspaceService; + + /**新增 + * @param + * @throws Exception + */ + @RequestMapping(value="/add") + @ResponseBody + @LogAnno(menuType= "手机",menuServer= "有限空间台账",instructionsOperate = "有限空间台账",instructionsType = "新增") + public Object add() throws Exception{ + Map map = new HashMap(); + String errInfo = "success"; + PageData pd = new PageData(); + pd = this.getPageData(); + pd.put("LIMITSPACE_ID", this.get32UUID()); //主键 + pd.put("CREATOR",pd.get("USER")); //添加人 + pd.put("CREATTIME", DateUtil.date2Str(new Date())); //创建时间 + pd.put("OPERATOR", pd.get("USER")); //修改人 + pd.put("OPERATTIME", DateUtil.date2Str(new Date())); //修改时间 + pd.put("ISDELETE", "0"); //是否删除 + limitspaceService.save(pd); + map.put("result", errInfo); + return map; + } + + /**删除 + * @param out + * @throws Exception + */ + @RequestMapping(value="/delete") + @RequiresPermissions("limitspace:del") + @ResponseBody + @LogAnno(menuType= "手机",menuServer= "有限空间台账",instructionsOperate = "有限空间台账",instructionsType = "删除") + public Object delete() throws Exception{ + Map map = new HashMap(); + String errInfo = "success"; + PageData pd = new PageData(); + pd = this.getPageData(); + pd.put("OPERATOR", Jurisdiction.getUsername()); //修改人 + pd.put("OPERATTIME", DateUtil.date2Str(new Date())); //修改时间 + limitspaceService.delete(pd); + map.put("result", errInfo); //返回结果 + return map; + } + + /**修改 + * @param + * @throws Exception + */ + @RequestMapping(value="/edit") + @ResponseBody + @LogAnno(menuType= "手机",menuServer= "有限空间台账",instructionsOperate = "有限空间台账",instructionsType = "修改") + public Object edit() throws Exception{ + Map map = new HashMap(); + String errInfo = "success"; + PageData pd = new PageData(); + pd = this.getPageData(); + pd.put("OPERATOR", pd.get("USER")); //修改人 + pd.put("OPERATTIME", DateUtil.date2Str(new Date())); //修改时间 + limitspaceService.edit(pd); + map.put("result", errInfo); + return map; + } + + /**列表 + * @param page + * @throws Exception + */ + @RequestMapping(value="/list") + @ResponseBody + @LogAnno(menuType= "手机",menuServer= "有限空间台账",instructionsOperate = "有限空间台账",instructionsType = "列表") + public Object list(Page page) throws Exception{ + Map map = new HashMap(); + 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 varList = limitspaceService.list(page); //列出LimitSpace列表 + map.put("varList", varList); + map.put("page", page); + map.put("result", errInfo); + return map; + } + + /**去修改页面获取数据 + * @param + * @throws Exception + */ + @RequestMapping(value="/goEdit") + @ResponseBody + @LogAnno(menuType= "手机",menuServer= "有限空间台账",instructionsOperate = "有限空间台账",instructionsType = "去修改页面获取数据") + public Object goEdit() throws Exception{ + Map map = new HashMap(); + String errInfo = "success"; + PageData pd = new PageData(); + pd = this.getPageData(); + pd = limitspaceService.findById(pd); //根据ID读取 + map.put("pd", pd); + map.put("result", errInfo); + return map; + } + + /**查询本公司所有有限空间 + * @param + * @throws Exception + */ + @RequestMapping(value="/listAllSpace") + @ResponseBody + @LogAnno(menuType= "手机",menuServer= "有限空间台账",instructionsOperate = "有限空间台账",instructionsType = "查询本公司所有有限空间") + public Object listAllSpace() throws Exception{ + Map map = new HashMap(); + String errInfo = "success"; + PageData pd = new PageData(); + pd = this.getPageData(); + List varList = limitspaceService.listAll(pd); //根据ID读取 + map.put("varList", varList); + map.put("result", errInfo); + return map; + } + + /**批量删除 + * @param + * @throws Exception + */ + @RequestMapping(value="/deleteAll") + @RequiresPermissions("limitspace:del") + @ResponseBody + @LogAnno(menuType= "手机",menuServer= "有限空间台账",instructionsOperate = "有限空间台账",instructionsType = "批量删除") + public Object deleteAll() throws Exception{ + Map map = new HashMap(); + 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(","); + pd.put("ArrayDATA_IDS", ArrayDATA_IDS); + pd.put("OPERATOR", Jurisdiction.getUsername()); //修改人 + pd.put("OPERATTIME", DateUtil.date2Str(new Date())); //修改时间 + //limitspaceService.deleteAll(pd); + errInfo = "success"; + }else{ + errInfo = "error"; + } + map.put("result", errInfo); //返回结果 + return map; + } + + /**导出到excel + * @param + * @throws Exception + */ + @RequestMapping(value="/excel") + @RequiresPermissions("toExcel") + @LogAnno(menuType= "手机",menuServer= "有限空间台账",instructionsOperate = "有限空间台账",instructionsType = "导出到excel") + public ModelAndView exportExcel() throws Exception{ + ModelAndView mv = new ModelAndView(); + PageData pd = new PageData(); + pd = this.getPageData(); + Map dataMap = new HashMap(); + List titles = new ArrayList(); + titles.add("编号"); //1 + titles.add("有限空间名称"); //2 + titles.add("有限空间类型"); //3 + titles.add("位置及范围"); //4 + titles.add("主要危险及有害因素"); //5 + titles.add("风险等级"); //6 + titles.add("本有限空间最多作业人数"); //7 + titles.add("是否有应急指导书 0无 1有"); //8 + titles.add("备注"); //9 + titles.add("填报人"); //10 + titles.add("主要负责人"); //11 + titles.add("填报时间"); //12 + titles.add("企业ID"); //13 + titles.add("添加人"); //14 + titles.add("添加时间"); //15 + titles.add("修改人"); //16 + titles.add("修改时间"); //17 + titles.add("是否删除 1-是 0-否"); //18 + dataMap.put("titles", titles); + List varOList = limitspaceService.listAll(pd); + List varList = new ArrayList(); + for(int i=0;i datalistPage(Page page); + + /**列表(全部) + * @param pd + * @throws Exception + */ + List listAll(PageData pd); + + /**通过id获取数据 + * @param pd + * @throws Exception + */ + PageData findById(PageData pd); + + /**批量删除 + * @param ArrayDATA_IDS + * @throws Exception + */ + void deleteAll(PageData pd); + +} + diff --git a/src/main/java/com/zcloud/service/eightwork/LimitSpaceService.java b/src/main/java/com/zcloud/service/eightwork/LimitSpaceService.java new file mode 100644 index 0000000..797af44 --- /dev/null +++ b/src/main/java/com/zcloud/service/eightwork/LimitSpaceService.java @@ -0,0 +1,59 @@ +package com.zcloud.service.eightwork; + +import com.zcloud.entity.Page; +import com.zcloud.entity.PageData; + +import java.util.List; + +/** + * 说明:有限空间台账 + * 作者:luoxiaobao + * 时间:2021-04-02 + * 官网:www.zcloudchina.com + */ +public interface LimitSpaceService { + + /**新增 + * @param pd + * @throws Exception + */ + public void save(PageData pd)throws Exception; + + /**删除 + * @param pd + * @throws Exception + */ + public void delete(PageData pd)throws Exception; + + /**修改 + * @param pd + * @throws Exception + */ + public void edit(PageData pd)throws Exception; + + /**列表 + * @param page + * @throws Exception + */ + public List list(Page page)throws Exception; + + /**列表(全部) + * @param pd + * @throws Exception + */ + public List listAll(PageData pd)throws Exception; + + /**通过id获取数据 + * @param pd + * @throws Exception + */ + public PageData findById(PageData pd)throws Exception; + + /**批量删除 + * @param ArrayDATA_IDS + * @throws Exception + */ + public void deleteAll(PageData pd)throws Exception; + +} + diff --git a/src/main/java/com/zcloud/service/eightwork/impl/LimitSpaceServiceImpl.java b/src/main/java/com/zcloud/service/eightwork/impl/LimitSpaceServiceImpl.java new file mode 100644 index 0000000..d1fe23c --- /dev/null +++ b/src/main/java/com/zcloud/service/eightwork/impl/LimitSpaceServiceImpl.java @@ -0,0 +1,83 @@ +package com.zcloud.service.eightwork.impl; + +import com.zcloud.entity.Page; +import com.zcloud.entity.PageData; +import com.zcloud.mapper.datasource.eightwork.LimitSpaceMapper; +import com.zcloud.service.eightwork.LimitSpaceService; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Service; +import org.springframework.transaction.annotation.Transactional; + +import java.util.List; + +/** + * 说明:有限空间台账 + * 作者:luoxiaobao + * 时间:2021-04-02 + * 官网:www.zcloudchina.com + */ +@Service +@Transactional //开启事物 +public class LimitSpaceServiceImpl implements LimitSpaceService { + + @Autowired + private LimitSpaceMapper limitspaceMapper; + + /**新增 + * @param pd + * @throws Exception + */ + public void save(PageData pd)throws Exception{ + limitspaceMapper.save(pd); + } + + /**删除 + * @param pd + * @throws Exception + */ + public void delete(PageData pd)throws Exception{ + limitspaceMapper.delete(pd); + } + + /**修改 + * @param pd + * @throws Exception + */ + public void edit(PageData pd)throws Exception{ + limitspaceMapper.edit(pd); + } + + /**列表 + * @param page + * @throws Exception + */ + public List list(Page page)throws Exception{ + return limitspaceMapper.datalistPage(page); + } + + /**列表(全部) + * @param pd + * @throws Exception + */ + public List listAll(PageData pd)throws Exception{ + return limitspaceMapper.listAll(pd); + } + + /**通过id获取数据 + * @param pd + * @throws Exception + */ + public PageData findById(PageData pd)throws Exception{ + return limitspaceMapper.findById(pd); + } + + /**批量删除 + * @param ArrayDATA_IDS + * @throws Exception + */ + public void deleteAll(PageData pd)throws Exception{ + limitspaceMapper.deleteAll(pd); + } + +} + diff --git a/src/main/resources/mybatis/datasource/eightwork/LimitSpaceMapper.xml b/src/main/resources/mybatis/datasource/eightwork/LimitSpaceMapper.xml new file mode 100644 index 0000000..bfee669 --- /dev/null +++ b/src/main/resources/mybatis/datasource/eightwork/LimitSpaceMapper.xml @@ -0,0 +1,270 @@ + + + + + + + BUS_LIMITSPACE + + + + + SYS_DICTIONARIES + + + + + f.NUMBER, + f.NAME, + f.LIMITSPACETYPE, + f.POSITIONSCOPE, + f.PRIMARYHAZARD, + f.RISKGRADE, + f.MAXPERSON, + f.HASINSTRUCTOR, + f.DESCR, + f.INFORMANT, + f.PRINCIPAL, + f.COMPILETIME, + f.CORPINFO_ID, + f.CREATOR, + f.CREATTIME, + f.OPERATOR, + f.OPERATTIME, + f.ISDELETE, + f.LIMITSPACE_ID + + + + + NUMBER, + NAME, + LIMITSPACETYPE, + POSITIONSCOPE, + PRIMARYHAZARD, + RISKGRADE, + MAXPERSON, + HASINSTRUCTOR, + DESCR, + INFORMANT, + PRINCIPAL, + COMPILETIME, + CORPINFO_ID, + CREATOR, + CREATTIME, + OPERATOR, + OPERATTIME, + ISDELETE, + LIMITSPACE_ID + + + + + #{NUMBER}, + #{NAME}, + #{LIMITSPACETYPE}, + #{POSITIONSCOPE}, + #{PRIMARYHAZARD}, + #{RISKGRADE}, + #{MAXPERSON}, + #{HASINSTRUCTOR}, + #{DESCR}, + #{INFORMANT}, + #{PRINCIPAL}, + #{COMPILETIME}, + #{CORPINFO_ID}, + #{CREATOR}, + #{CREATTIME}, + #{OPERATOR}, + #{OPERATTIME}, + #{ISDELETE}, + #{LIMITSPACE_ID} + + + + + insert into + + ( + + ) values ( + + ) + + + + + update + + set + ISDELETE = '1', + OPERATOR = #{OPERATOR}, + OPERATTIME = #{OPERATTIME} + where + LIMITSPACE_ID = #{LIMITSPACE_ID} + + + + + update + + set + NUMBER = #{NUMBER}, + NAME = #{NAME}, + LIMITSPACETYPE = #{LIMITSPACETYPE}, + POSITIONSCOPE = #{POSITIONSCOPE}, + PRIMARYHAZARD = #{PRIMARYHAZARD}, + RISKGRADE = #{RISKGRADE}, + MAXPERSON = #{MAXPERSON}, + HASINSTRUCTOR = #{HASINSTRUCTOR}, + DESCR = #{DESCR}, + INFORMANT = #{INFORMANT}, + PRINCIPAL = #{PRINCIPAL}, + COMPILETIME = #{COMPILETIME}, + OPERATOR = #{OPERATOR}, + OPERATTIME = #{OPERATTIME}, + LIMITSPACE_ID = LIMITSPACE_ID + where + LIMITSPACE_ID = #{LIMITSPACE_ID} + + + + + + + + + + + + + + update + + set + ISDELETE = '1', + OPERATOR = #{OPERATOR}, + OPERATTIME = #{OPERATTIME} + where + LIMITSPACE_ID in + + #{item} + + + +