From a489b023d9ca2a24dfe82d05f19cac8718aa5c13 Mon Sep 17 00:00:00 2001 From: lizijie <lzjiiie@163.com> Date: Thu, 15 Apr 2021 11:38:09 +0800 Subject: [PATCH] 添加查询菜单列表功能 --- screen-manage/src/main/java/com/moral/api/service/impl/ManageRoleServiceImpl.java | 169 ++++++++++++++++++++++++++++++++++++++++--------------- 1 files changed, 122 insertions(+), 47 deletions(-) diff --git a/screen-manage/src/main/java/com/moral/api/service/impl/ManageRoleServiceImpl.java b/screen-manage/src/main/java/com/moral/api/service/impl/ManageRoleServiceImpl.java index c71e9ca..bccc23d 100644 --- a/screen-manage/src/main/java/com/moral/api/service/impl/ManageRoleServiceImpl.java +++ b/screen-manage/src/main/java/com/moral/api/service/impl/ManageRoleServiceImpl.java @@ -1,26 +1,33 @@ package com.moral.api.service.impl; +import com.alibaba.fastjson.JSON; import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; +import com.moral.api.entity.ManageAccount; import com.moral.api.entity.ManageAccountRole; -import com.moral.api.entity.ManageMenu; +import com.moral.api.entity.ManageLog; import com.moral.api.entity.ManageRole; import com.moral.api.mapper.ManageAccountRoleMapper; +import com.moral.api.mapper.ManageLogMapper; import com.moral.api.mapper.ManageRoleMapper; import com.moral.api.mapper.ManageRoleMenuMapper; +import com.moral.api.pojo.dto.login.AccountInfoDTO; import com.moral.api.service.ManageRoleService; import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; +import com.moral.api.util.LogUtils; import com.moral.constant.Constants; +import com.moral.constant.ResponseCodeEnum; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.data.domain.Page; import org.springframework.stereotype.Service; import org.springframework.transaction.annotation.Transactional; import org.springframework.util.StringUtils; +import org.springframework.web.context.request.RequestContextHolder; +import org.springframework.web.context.request.ServletRequestAttributes; import javax.annotation.Resource; -import java.util.ArrayList; -import java.util.HashMap; -import java.util.List; -import java.util.Map; +import javax.servlet.http.HttpServletRequest; +import java.text.SimpleDateFormat; +import java.util.*; /** * <p> @@ -51,49 +58,77 @@ @Autowired(required = false) private ManageAccountRoleMapper manageAccountRoleMapper; + @Autowired + LogUtils logUtils; + @Override - @Transactional - public List<ManageRole> getAllWithPagingQuery(Map map) { - com.baomidou.mybatisplus.extension.plugins.pagination.Page<ManageRole> page = new com.baomidou.mybatisplus.extension.plugins.pagination.Page<>(Integer.parseInt(map.get("current").toString()), Integer.parseInt(map.get("size").toString())); + public Map<String,Object> getAllWithPagingQuery(Map map) { + Map<String,Object> resultMap = new HashMap<>(); + int current = Integer.parseInt(map.get("current").toString()); + int size = Integer.parseInt(map.get("size").toString()); + com.baomidou.mybatisplus.extension.plugins.pagination.Page<ManageRole> page = new com.baomidou.mybatisplus.extension.plugins.pagination.Page<>(current, size); QueryWrapper<ManageRole> wrapper = new QueryWrapper(); wrapper.eq("is_delete",0); + wrapper.orderByDesc("create_time"); com.baomidou.mybatisplus.extension.plugins.pagination.Page resultpage = manageRoleMapper.selectPage(page,wrapper); List<ManageRole> manageRoles = resultpage.getRecords(); - return manageRoles; + SimpleDateFormat SDF = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); + List<Map<String,Object>> manageRolesList = new ArrayList<>(); + for (ManageRole manageRole:manageRoles) { + Map manageRoleMap = JSON.parseObject(JSON.toJSONString(manageRole),Map.class); + String createTime = SDF.format(manageRole.getCreateTime()); + String updateTime = SDF.format(manageRole.getUpdateTime()); + manageRoleMap.put("createTime",createTime); + manageRoleMap.put("updateTime",updateTime); + manageRoleMap.put("key",manageRole.getId()); + manageRolesList.add(manageRoleMap); + } + resultMap.put("manageRoles",manageRolesList); + int totalNumber = manageRoleMapper.selectCount(wrapper); + resultMap.put("totalNumber",totalNumber); + resultMap.put("current",current); + int totalPageNumber = totalNumber/size; + if(totalNumber%size != 0){ + totalPageNumber += 1; + } + resultMap.put("totalPageNumber",totalPageNumber); + return resultMap; } @Override @Transactional - public Map<String,Object> insertOne(ManageRole manageRole,List list) { + public Map<String,Object> insertOne(ManageRole manageRole, List list) { Map<String,Object> resultMap = new HashMap<>(); if (manageRole.getName()==null){ - resultMap.put("flag",false); - resultMap.put("msg","���������������"); + resultMap.put("code",ResponseCodeEnum.PARAMETERS_IS_MISSING.getCode()); + resultMap.put("msg",ResponseCodeEnum.PARAMETERS_IS_MISSING.getMsg()); return resultMap; } if (manageRoleMapper.getManageRoleByName(manageRole.getName()) != null){ - resultMap.put("flag",false); - resultMap.put("msg","���������������������"); - }else { - manageRoleMapper.insertOne(manageRole); - resultMap.put("flag",true); - resultMap.put("msg","���������������"); + resultMap.put("code",ResponseCodeEnum.ROLE_IS_EXPIRE.getCode()); + resultMap.put("msg",ResponseCodeEnum.ROLE_IS_EXPIRE.getMsg()); + return resultMap; } - boolean flag = Boolean.parseBoolean(resultMap.get("flag").toString()); - if (flag){ - ManageRole manageRoleIns = manageRoleMapper.getManageRoleByName(manageRole.getName()); - int role_id = manageRoleIns.getId(); - System.out.println(role_id); - List insertList = new ArrayList(); - for (Object temp: list) { - Map<String,Integer> insertMap = new HashMap<>(); - insertMap.put("role_id",role_id); - insertMap.put("menu_id",Integer.parseInt(temp.toString())); - insertList.add(insertMap); - } - System.out.println(insertList); + manageRoleMapper.insertOne(manageRole); + ManageRole manageRoleIns = manageRoleMapper.getManageRoleByName(manageRole.getName()); + int role_id = manageRoleIns.getId(); + List insertList = new ArrayList(); + for (Object temp: list) { + Map<String,Integer> insertMap = new HashMap<>(); + insertMap.put("role_id",role_id); + insertMap.put("menu_id",Integer.parseInt(temp.toString())); + insertList.add(insertMap); + } + //��������������������������������������������� + if (insertList.size()>0){ manageRoleMenuMapper.insertBatch(insertList); } + //������������������ + HttpServletRequest request = ((ServletRequestAttributes) RequestContextHolder.getRequestAttributes()).getRequest(); + String content = "������������:"+manageRole.getName()+";"; + logUtils.saveOperationForManage(request,content,Constants.INSERT_OPERATE_TYPE); + resultMap.put("code",ResponseCodeEnum.SUCCESS.getCode()); + resultMap.put("msg",ResponseCodeEnum.SUCCESS.getMsg()); return resultMap; } @@ -102,44 +137,79 @@ public Map<String,Object> updateManageRole(Map map) { Map<String,Object> resultMap = new HashMap<>(); if (!map.containsKey("id")){ - resultMap.put("flag",false); - resultMap.put("msg","������������������������"); + resultMap.put("code",ResponseCodeEnum.PARAMETERS_IS_MISSING.getCode()); + resultMap.put("msg",ResponseCodeEnum.PARAMETERS_IS_MISSING.getMsg()); return resultMap; } if (manageRoleMapper.getManageRoleById(Integer.parseInt(map.get("id").toString())) == null){ - resultMap.put("flag",false); - resultMap.put("msg","���������������������"); + resultMap.put("code",ResponseCodeEnum.ROLE_IS_NULL.getCode()); + resultMap.put("msg",ResponseCodeEnum.ROLE_IS_NULL.getMsg()); }else { + //��������������������������������� + ManageRole manageRoleOld = manageRoleMapper.selectById(Integer.parseInt(map.get("id").toString())); manageRoleMapper.updateManageRoleById(map); - resultMap.put("flag",true); - resultMap.put("msg","���������������"); + //������������������ + HttpServletRequest request = ((ServletRequestAttributes) RequestContextHolder.getRequestAttributes()).getRequest(); + String content = "���������������:"+manageRoleOld.getName()+";"; + for (Object key:map.keySet()) { + if (key.toString().equals("name")){ + content = content+"���������:"+manageRoleOld.getName()+"->"+map.get(key)+";"; + } + if (key.toString().equals("desc")){ + content = content+"������:"+manageRoleOld.getDesc()+"->"+map.get(key)+";"; + } + } + logUtils.saveOperationForManage(request,content,Constants.UPDATE_OPERATE_TYPE); + resultMap.put("code",ResponseCodeEnum.SUCCESS.getCode()); + resultMap.put("msg",ResponseCodeEnum.SUCCESS.getMsg()); } return resultMap; } @Override - @Transactional - public List<ManageRole> getManageRoleByNameFuzzy(Map map) { - com.baomidou.mybatisplus.extension.plugins.pagination.Page<ManageRole> page = new com.baomidou.mybatisplus.extension.plugins.pagination.Page<>(Integer.parseInt(map.get("current").toString()), Integer.parseInt(map.get("size").toString())); + public Map<String,Object> getManageRoleByNameFuzzy(Map map) { + Map<String,Object> resultMap = new HashMap<>(); + int current = Integer.parseInt(map.get("current").toString()); + int size = Integer.parseInt(map.get("size").toString()); + com.baomidou.mybatisplus.extension.plugins.pagination.Page<ManageRole> page = new com.baomidou.mybatisplus.extension.plugins.pagination.Page<>(current, size); QueryWrapper<ManageRole> wrapper = new QueryWrapper(); wrapper.eq("is_delete",0); wrapper.like("name",map.get("name")); com.baomidou.mybatisplus.extension.plugins.pagination.Page resultpage = manageRoleMapper.selectPage(page,wrapper); List<ManageRole> manageRoles = resultpage.getRecords(); - return manageRoles; + SimpleDateFormat SDF = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); + List<Map<String,Object>> manageRolesList = new ArrayList<>(); + for (ManageRole manageRole:manageRoles) { + Map manageRoleMap = JSON.parseObject(JSON.toJSONString(manageRole),Map.class); + String createTime = SDF.format(manageRole.getCreateTime()); + String updateTime = SDF.format(manageRole.getUpdateTime()); + manageRoleMap.put("createTime",createTime); + manageRoleMap.put("updateTime",updateTime); + manageRolesList.add(manageRoleMap); + } + resultMap.put("manageRoles",manageRolesList); + int totalNumber = manageRoleMapper.selectCount(wrapper); + resultMap.put("totalNumber",totalNumber); + resultMap.put("current",current); + int totalPageNumber = totalNumber/size; + if(totalNumber%size != 0){ + totalPageNumber += 1; + } + resultMap.put("totalPageNumber",totalPageNumber); + return resultMap; } @Override public Map<String, Object> deleteManageRole(Map map) { Map<String,Object> resultMap = new HashMap<>(); if (!map.containsKey("id")){ - resultMap.put("flag",false); - resultMap.put("msg","������������������������"); + resultMap.put("code",ResponseCodeEnum.PARAMETERS_IS_MISSING.getCode()); + resultMap.put("msg",ResponseCodeEnum.PARAMETERS_IS_MISSING.getMsg()); return resultMap; } if (manageRoleMapper.getManageRoleById(Integer.parseInt(map.get("id").toString())) == null){ - resultMap.put("flag",false); - resultMap.put("msg","������������������������������������"); + resultMap.put("code",ResponseCodeEnum.ROLE_IS_NULL.getCode()); + resultMap.put("msg",ResponseCodeEnum.ROLE_IS_NULL.getMsg()); }else { ManageRole manageRole = new ManageRole(); manageRole.setId(Integer.parseInt(map.get("id").toString())); @@ -153,8 +223,13 @@ QueryWrapper<ManageAccountRole> wrapper = new QueryWrapper(); wrapper.eq("role_id",Integer.parseInt(map.get("id").toString())); manageAccountRoleMapper.update(manageAccountRole,wrapper); - resultMap.put("flag",true); - resultMap.put("msg","���������������"); + //������������������ + HttpServletRequest request = ((ServletRequestAttributes) RequestContextHolder.getRequestAttributes()).getRequest(); + ManageRole manageRole1 = manageRoleMapper.selectById(Integer.parseInt(map.get("id").toString())); + String content = "������������:"+manageRole1.getName()+";"; + logUtils.saveOperationForManage(request,content,Constants.DELETE_OPERATE_TYPE); + resultMap.put("code",ResponseCodeEnum.SUCCESS.getCode()); + resultMap.put("msg",ResponseCodeEnum.SUCCESS.getMsg()); } return resultMap; } -- Gitblit v1.8.0