UserServiceImpl.java 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. package com.nokia.service.user;
  2. import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
  3. import com.baomidou.mybatisplus.core.toolkit.Wrappers;
  4. import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
  5. import com.nokia.dao.CityDao;
  6. import com.nokia.dao.RoleDao;
  7. import com.nokia.dao.UserDao;
  8. import com.nokia.dao.UserRoleDao;
  9. import com.nokia.pojo.CityEntity;
  10. import com.nokia.pojo.UserEntity;
  11. import com.nokia.pojo.UserRoleEntity;
  12. import org.springframework.beans.factory.annotation.Autowired;
  13. import org.springframework.stereotype.Service;
  14. import org.springframework.transaction.annotation.Transactional;
  15. import java.util.HashMap;
  16. import java.util.List;
  17. import java.util.Map;
  18. @Service
  19. public class UserServiceImpl extends ServiceImpl<UserDao, UserEntity> implements UserService {
  20. private final UserRoleDao userRoleDao;
  21. private final CityDao cityDao;
  22. @Autowired
  23. public UserServiceImpl(RoleDao roleDao, UserRoleDao userRoleDao, CityDao cityDao) {
  24. this.userRoleDao = userRoleDao;
  25. this.cityDao = cityDao;
  26. }
  27. @Transactional
  28. public String add(UserEntity table2User) {
  29. UserEntity query = new UserEntity();
  30. query.setLoginName(table2User.getLoginName());
  31. UserEntity one = baseMapper.selectOne(Wrappers.query(query));
  32. if (one != null) {
  33. return "loginName: " + table2User.getLoginName() + " 已存在";
  34. } else {
  35. table2User.setCityId(table2User.getCityId());
  36. baseMapper.insert(table2User);
  37. List<Integer> roleEntityList1 = table2User.getRoleIdList();
  38. UserRoleEntity userRoleEntity = new UserRoleEntity();
  39. for (Integer integer : roleEntityList1) {
  40. userRoleEntity.setUserId(table2User.getUserId());
  41. userRoleEntity.setRoleId(integer);
  42. userRoleDao.insert(userRoleEntity);
  43. }
  44. }
  45. return "ok";
  46. }
  47. @Override
  48. @Transactional
  49. public String delete(Integer userId) {
  50. // UserEntity userEntity = baseMapper.selectById(userId);
  51. /* cityDao.deleteById(userEntity.getCityId()); */
  52. QueryWrapper<UserRoleEntity> objectQueryWrapper = new QueryWrapper<>();
  53. objectQueryWrapper.eq("user_id", userId);
  54. List<UserRoleEntity> userRoleEntities = userRoleDao.selectList(objectQueryWrapper);
  55. for (UserRoleEntity userRoleEntity : userRoleEntities) {
  56. Integer id = userRoleEntity.getId();
  57. userRoleDao.deleteById(id);
  58. }
  59. baseMapper.deleteById(userId);
  60. return "ok";
  61. }
  62. @Override
  63. @Transactional
  64. public String update(UserEntity user) {
  65. baseMapper.updateById(user);
  66. Integer userId = user.getUserId();
  67. QueryWrapper<UserRoleEntity> queryWrapper = new QueryWrapper<>();
  68. queryWrapper.eq("user_id", userId);
  69. userRoleDao.delete(queryWrapper);
  70. for (Integer rolid : user.getRoleIdList()) {
  71. UserRoleEntity userRoleEntity = new UserRoleEntity();
  72. userRoleEntity.setUserId(user.getUserId());
  73. userRoleEntity.setRoleId(rolid);
  74. userRoleDao.insert(userRoleEntity);
  75. }
  76. return "ok";
  77. }
  78. @Override
  79. public Map<String, Object> select(Integer userId) {
  80. Map<String, Object> hashMap = new HashMap<>();
  81. if (userId == null) {
  82. hashMap.put("userId", "为空");
  83. return hashMap;
  84. }
  85. UserEntity userEntity = baseMapper.selectById(userId);
  86. QueryWrapper<UserEntity> userEntityQueryWrapper = new QueryWrapper<>();
  87. userEntityQueryWrapper.eq("user_id", userId);
  88. UserEntity one = baseMapper.selectOne(userEntityQueryWrapper);
  89. if (one == null) {
  90. hashMap.put("userId", "不正确");
  91. return hashMap;
  92. }
  93. Integer cityId = userEntity.getCityId();
  94. CityEntity cityEntity = cityDao.selectById(cityId);
  95. // 他有两个角色 对 我知道 用for遍历来查 不需要for遍历查
  96. QueryWrapper<UserRoleEntity> objectQueryWrapper = new QueryWrapper<>();
  97. objectQueryWrapper.eq("user_id", userId);
  98. List<UserRoleEntity> userRoleEntities = userRoleDao.selectList(objectQueryWrapper);
  99. hashMap.put("userEntity", userEntity);
  100. hashMap.put("cityEntity", cityEntity);
  101. hashMap.put("userRoleEntities", userRoleEntities);
  102. return hashMap;
  103. }
  104. }