Commit d5aa02b7 by tntxia

新增用户加上新增标识

parent 369793c5
...@@ -876,6 +876,7 @@ public class UserServiceImpl extends ServiceImpl<IUserMapper, UserEntity> implem ...@@ -876,6 +876,7 @@ public class UserServiceImpl extends ServiceImpl<IUserMapper, UserEntity> implem
userEntity.setPassword(SecurityUtils.encryptPassword(user.getPassword())); userEntity.setPassword(SecurityUtils.encryptPassword(user.getPassword()));
userEntity.setUsername(user.getUsername()); userEntity.setUsername(user.getUsername());
userEntity.setWorkspaceId(workspaceId); userEntity.setWorkspaceId(workspaceId);
userEntity.setNewAdd(true);
int insert = this.mapper.insert(userEntity); int insert = this.mapper.insert(userEntity);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment