Compare commits

...

2 Commits

  1. 2
      src/main/java/com/qs/serve/modules/sys/service/impl/SysPostUserServiceImpl.java

2
src/main/java/com/qs/serve/modules/sys/service/impl/SysPostUserServiceImpl.java

@ -76,7 +76,7 @@ public class SysPostUserServiceImpl extends ServiceImpl<SysPostUserMapper,SysPos
if(CollectionUtil.isNotEmpty(postUserList)){ if(CollectionUtil.isNotEmpty(postUserList)){
for (SysPostUser postUser : postUserList) { for (SysPostUser postUser : postUserList) {
postUser.setPathIds(postUser.getPathIds().replace(orgPathIds,newPathIds)); postUser.setPathIds(postUser.getPathIds().replace(orgPathIds,newPathIds));
postUser.setPostName(postUser.getPathNames().replace(orgPathNames,newPathNames)); // postUser.setPostName(postUser.getPathNames().replace(orgPathNames,newPathNames));
} }
this.updateBatchById(postUserList); this.updateBatchById(postUserList);
} }

Loading…
Cancel
Save