|
@@ -1,13 +1,13 @@
|
|
|
-package com.nokia.service.user;
|
|
|
+package com.nokia.service;
|
|
|
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
|
import com.baomidou.mybatisplus.core.toolkit.Wrappers;
|
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
|
import com.nokia.dao.CityDao;
|
|
|
-import com.nokia.dao.RoleDao;
|
|
|
import com.nokia.dao.UserDao;
|
|
|
import com.nokia.dao.UserRoleDao;
|
|
|
import com.nokia.pojo.CityEntity;
|
|
|
+import com.nokia.pojo.RoleEntity;
|
|
|
import com.nokia.pojo.UserEntity;
|
|
|
import com.nokia.pojo.UserRoleEntity;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
@@ -17,16 +17,18 @@ import org.springframework.transaction.annotation.Transactional;
|
|
|
import java.util.HashMap;
|
|
|
import java.util.List;
|
|
|
import java.util.Map;
|
|
|
+import java.util.Set;
|
|
|
|
|
|
@Service
|
|
|
-public class UserServiceImpl extends ServiceImpl<UserDao, UserEntity> implements UserService {
|
|
|
+public class UserService extends ServiceImpl<UserDao, UserEntity> {
|
|
|
|
|
|
+ private final UserDao userDao;
|
|
|
private final UserRoleDao userRoleDao;
|
|
|
-
|
|
|
private final CityDao cityDao;
|
|
|
|
|
|
@Autowired
|
|
|
- public UserServiceImpl(RoleDao roleDao, UserRoleDao userRoleDao, CityDao cityDao) {
|
|
|
+ public UserService(UserDao userDao, UserRoleDao userRoleDao, CityDao cityDao) {
|
|
|
+ this.userDao = userDao;
|
|
|
this.userRoleDao = userRoleDao;
|
|
|
this.cityDao = cityDao;
|
|
|
}
|
|
@@ -41,18 +43,17 @@ public class UserServiceImpl extends ServiceImpl<UserDao, UserEntity> implements
|
|
|
} else {
|
|
|
table2User.setCityId(table2User.getCityId());
|
|
|
baseMapper.insert(table2User);
|
|
|
- List<Integer> roleEntityList1 = table2User.getRoleIdList();
|
|
|
+ Set<RoleEntity> roleEntityList1 = table2User.getRoles();
|
|
|
UserRoleEntity userRoleEntity = new UserRoleEntity();
|
|
|
- for (Integer integer : roleEntityList1) {
|
|
|
+ for (RoleEntity role : roleEntityList1) {
|
|
|
userRoleEntity.setUserId(table2User.getUserId());
|
|
|
- userRoleEntity.setRoleId(integer);
|
|
|
+ userRoleEntity.setRoleId(role.getRoleId());
|
|
|
userRoleDao.insert(userRoleEntity);
|
|
|
}
|
|
|
}
|
|
|
return "ok";
|
|
|
}
|
|
|
|
|
|
- @Override
|
|
|
@Transactional
|
|
|
public String delete(Integer userId) {
|
|
|
// UserEntity userEntity = baseMapper.selectById(userId);
|
|
@@ -68,24 +69,30 @@ public class UserServiceImpl extends ServiceImpl<UserDao, UserEntity> implements
|
|
|
return "ok";
|
|
|
}
|
|
|
|
|
|
- @Override
|
|
|
@Transactional
|
|
|
public String update(UserEntity user) {
|
|
|
+ // 更新user表
|
|
|
baseMapper.updateById(user);
|
|
|
+ // 更新user_role 分为2步
|
|
|
Integer userId = user.getUserId();
|
|
|
QueryWrapper<UserRoleEntity> queryWrapper = new QueryWrapper<>();
|
|
|
queryWrapper.eq("user_id", userId);
|
|
|
+ // 1. 删除原user_role
|
|
|
userRoleDao.delete(queryWrapper);
|
|
|
- for (Integer rolid : user.getRoleIdList()) {
|
|
|
+ // 2. 添加新的user_role
|
|
|
+ for (RoleEntity role : user.getRoles()) {
|
|
|
UserRoleEntity userRoleEntity = new UserRoleEntity();
|
|
|
userRoleEntity.setUserId(user.getUserId());
|
|
|
- userRoleEntity.setRoleId(rolid);
|
|
|
+ userRoleEntity.setRoleId(role.getRoleId());
|
|
|
userRoleDao.insert(userRoleEntity);
|
|
|
}
|
|
|
return "ok";
|
|
|
}
|
|
|
|
|
|
- @Override
|
|
|
+ public UserEntity getByLoginName(String loginName) {
|
|
|
+ return userDao.getByLoinName(loginName);
|
|
|
+ }
|
|
|
+
|
|
|
public Map<String, Object> select(Integer userId) {
|
|
|
Map<String, Object> hashMap = new HashMap<>();
|
|
|
if (userId == null) {
|