REQ-3345: 修复字段问题

This commit is contained in:
yanglin 2025-02-19 10:16:49 +08:00
parent e1cb4c61ce
commit 20890e8502
2 changed files with 2 additions and 2 deletions

View File

@ -20,7 +20,7 @@ import java.util.Date;
public class GroupMember {
private Long id;
private Long tid;
private GroupType groupType;
private GroupType type;
private String imAccount;
private Long personId;
private Long personOuId;

View File

@ -94,7 +94,7 @@ public class GroupMemberSyncer {
members.add(account);
account.setTid(group.getTid());
account.setImAccount(member.getAccid());
account.setGroupType(group.getType());
account.setType(group.getType());
account.setMemberType(
groupInfo.getOwner().equals(member)
? GroupMemberType.OWNER