This repository has been archived by the owner on Aug 12, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 197
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
233 additions
and
63 deletions.
There are no files selected for viewing
73 changes: 51 additions & 22 deletions
73
qqinterface/src/main/java/com/tencent/mobileqq/data/troop/TroopMemberInfo.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
48 changes: 48 additions & 0 deletions
48
qqinterface/src/main/java/com/tencent/mobileqq/data/troop/TroopMemberInfoExt.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
package com.tencent.mobileqq.data.troop; | ||
|
||
import org.jetbrains.annotations.Nullable; | ||
|
||
import kotlin.jvm.JvmField; | ||
|
||
public class TroopMemberInfoExt { | ||
@JvmField | ||
public int commonFrdCnt; | ||
|
||
@JvmField | ||
public long flagEx3; | ||
|
||
@JvmField | ||
public int hwIdentity; | ||
|
||
@JvmField | ||
public long lastMsgUpdateHonorRichTime; | ||
|
||
@JvmField | ||
@Nullable | ||
public String memberUin; | ||
|
||
@JvmField | ||
@Nullable | ||
public byte[] nickIconRepeatMsgBuffer; | ||
|
||
@JvmField | ||
@Nullable | ||
public String recommendRemark; | ||
|
||
@JvmField | ||
@Nullable | ||
public String showNameForPinyin; | ||
|
||
@JvmField | ||
@Nullable | ||
public String showNamePinyinAll; | ||
|
||
@JvmField | ||
@Nullable | ||
public String showNamePinyinFirst; | ||
|
||
@JvmField | ||
@Nullable | ||
public String troopUin; | ||
|
||
} |
29 changes: 29 additions & 0 deletions
29
qqinterface/src/main/java/com/tencent/mobileqq/data/troop/TroopMemberSpecialTitleInfo.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
package com.tencent.mobileqq.data.troop; | ||
|
||
import org.jetbrains.annotations.NotNull; | ||
|
||
public class TroopMemberSpecialTitleInfo { | ||
public final int getExpireTimeSec() { | ||
return 0; | ||
} | ||
|
||
@NotNull | ||
public final String getFriendNick() { | ||
return null; | ||
} | ||
|
||
@NotNull | ||
public final String getSpecialTitle() { | ||
return null; | ||
} | ||
|
||
@NotNull | ||
public final String getTroopUin() { | ||
return null; | ||
} | ||
|
||
@NotNull | ||
public final String getUin() { | ||
return null; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.