3
0

2 Коммитууд 3e54f355db ... fffc1c84ae

Эзэн SHA1 Мессеж Огноо
  TRX fffc1c84ae Merge remote-tracking branch 'origin/master' 1 жил өмнө
  TRX f8c4ea5f48 更新!11 1 жил өмнө

+ 3 - 1
FullCardServer/src/main/java/com/zhongshu/card/server/core/service/user/UserAccountServiceImpl.java

@@ -664,6 +664,7 @@ public class UserAccountServiceImpl extends SuperService implements UserAccountS
         if (StringUtils.isEmpty(oid)) {
             oid = getCurrentOid();
         }
+        // 查询用户基本信息
         Page<UserAccount> page = userCountDao.page(pageable, param);
 
         List<UserCountAboutRoleModel> models = new ArrayList<>();
@@ -725,7 +726,8 @@ public class UserAccountServiceImpl extends SuperService implements UserAccountS
         if (ObjectUtils.isNotEmpty(entity)) {
             model = new UserCountAboutRoleModel();
             BeanUtils.copyProperties(entity, model);
-            // 角色
+
+            // 角色(指定机构上角色信息)
             if (StringUtils.isNotEmpty(oid)) {
                 OrganizationUser organizationUser = organizationUserDao.findTopByUserIdAndOid(entity.getUserId(), oid);
                 if (ObjectUtils.isNotEmpty(organizationUser)) {