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.
fix: 9.0.71 compatible issues (part of)
- Loading branch information
1 parent
59d762e
commit 4016c05
Showing
45 changed files
with
1,215 additions
and
124 deletions.
There are no files selected for viewing
4 changes: 3 additions & 1 deletion
4
qqinterface/src/main/java/com/tencent/qphone/base/util/CodecWarpper.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
2 changes: 1 addition & 1 deletion
2
qqinterface/src/main/java/com/tencent/qqnt/aio/api/IAIOFileTransfer.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
4 changes: 4 additions & 0 deletions
4
qqinterface/src/main/java/com/tencent/qqnt/kernel/api/impl/GroupService.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,4 @@ | ||
package com.tencent.qqnt.kernel.api.impl; | ||
|
||
public class GroupService { | ||
} |
2 changes: 2 additions & 0 deletions
2
qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/ContactMsgBoxInfo.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
2 changes: 2 additions & 0 deletions
2
qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GroupGuildNotifyInfo.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
36 changes: 36 additions & 0 deletions
36
...ce/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GroupMemberCommonListResult.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,36 @@ | ||
package com.tencent.qqnt.kernel.nativeinterface; | ||
|
||
import java.util.ArrayList; | ||
|
||
public class GroupMemberCommonListResult { | ||
public long groupCode; | ||
public int identifyFlag; | ||
public long startUin; | ||
public ArrayList<MemberCommonInfo> memberList = new ArrayList<>(); | ||
public String strErrorInfo = ""; | ||
|
||
public long getGroupCode() { | ||
return this.groupCode; | ||
} | ||
|
||
public int getIdentifyFlag() { | ||
return this.identifyFlag; | ||
} | ||
|
||
public ArrayList<MemberCommonInfo> getMemberList() { | ||
return this.memberList; | ||
} | ||
|
||
public long getStartUin() { | ||
return this.startUin; | ||
} | ||
|
||
public String getStrErrorInfo() { | ||
return this.strErrorInfo; | ||
} | ||
|
||
public String toString() { | ||
return "GroupMemberCommonListResult{groupCode=" + this.groupCode + ",startUin=" + this.startUin + ",identifyFlag=" + this.identifyFlag + ",memberList=" + this.memberList + ",strErrorInfo=" + this.strErrorInfo + ",}"; | ||
} | ||
|
||
} |
101 changes: 101 additions & 0 deletions
101
qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GroupMemberCommonReq.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,101 @@ | ||
package com.tencent.qqnt.kernel.nativeinterface; | ||
|
||
import java.util.ArrayList; | ||
|
||
public class GroupMemberCommonReq { | ||
public long groupCode; | ||
public int sourceType; | ||
public String startUin = ""; | ||
public String identifyFlag = ""; | ||
public ArrayList<Long> uinList = new ArrayList<>(); | ||
public MemberCommonInfoFilter memberCommonFilter = new MemberCommonInfoFilter(); | ||
public String memberNum = ""; | ||
public String filterMethod = ""; | ||
public String onlineFlag = ""; | ||
public String realSpecialTitleFlag = ""; | ||
|
||
public String getFilterMethod() { | ||
return this.filterMethod; | ||
} | ||
|
||
public long getGroupCode() { | ||
return this.groupCode; | ||
} | ||
|
||
public String getIdentifyFlag() { | ||
return this.identifyFlag; | ||
} | ||
|
||
public MemberCommonInfoFilter getMemberCommonFilter() { | ||
return this.memberCommonFilter; | ||
} | ||
|
||
public String getMemberNum() { | ||
return this.memberNum; | ||
} | ||
|
||
public String getOnlineFlag() { | ||
return this.onlineFlag; | ||
} | ||
|
||
public String getRealSpecialTitleFlag() { | ||
return this.realSpecialTitleFlag; | ||
} | ||
|
||
public int getSourceType() { | ||
return this.sourceType; | ||
} | ||
|
||
public String getStartUin() { | ||
return this.startUin; | ||
} | ||
|
||
public ArrayList<Long> getUinList() { | ||
return this.uinList; | ||
} | ||
|
||
public void setFilterMethod(String str) { | ||
this.filterMethod = str; | ||
} | ||
|
||
public void setGroupCode(long j2) { | ||
this.groupCode = j2; | ||
} | ||
|
||
public void setIdentifyFlag(String str) { | ||
this.identifyFlag = str; | ||
} | ||
|
||
public void setMemberCommonFilter(MemberCommonInfoFilter memberCommonInfoFilter) { | ||
this.memberCommonFilter = memberCommonInfoFilter; | ||
} | ||
|
||
public void setMemberNum(String str) { | ||
this.memberNum = str; | ||
} | ||
|
||
public void setOnlineFlag(String str) { | ||
this.onlineFlag = str; | ||
} | ||
|
||
public void setRealSpecialTitleFlag(String str) { | ||
this.realSpecialTitleFlag = str; | ||
} | ||
|
||
public void setSourceType(int i2) { | ||
this.sourceType = i2; | ||
} | ||
|
||
public void setStartUin(String str) { | ||
this.startUin = str; | ||
} | ||
|
||
public void setUinList(ArrayList<Long> arrayList) { | ||
this.uinList = arrayList; | ||
} | ||
|
||
public String toString() { | ||
return "GroupMemberCommonReq{groupCode=" + this.groupCode + ",startUin=" + this.startUin + ",identifyFlag=" + this.identifyFlag + ",uinList=" + this.uinList + ",memberCommonFilter=" + this.memberCommonFilter + ",memberNum=" + this.memberNum + ",filterMethod=" + this.filterMethod + ",onlineFlag=" + this.onlineFlag + ",realSpecialTitleFlag=" + this.realSpecialTitleFlag + ",sourceType=" + this.sourceType + ",}"; | ||
} | ||
|
||
} |
81 changes: 81 additions & 0 deletions
81
...rface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GroupMemberExtListResult.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,81 @@ | ||
package com.tencent.qqnt.kernel.nativeinterface; | ||
|
||
import java.util.ArrayList; | ||
|
||
public class GroupMemberExtListResult { | ||
public long dataTime; | ||
public long endUin; | ||
public long groupCode; | ||
public int levelNameSeq; | ||
public int memberInfoSeq; | ||
public int sysShowFlag; | ||
public int timeToUpdate; | ||
public int userShowFlag; | ||
public int userShowFlagNew; | ||
public ArrayList<MemberExtInfo> memberLevelInfo = new ArrayList<>(); | ||
public ArrayList<MemberLevelName> msgLevelName = new ArrayList<>(); | ||
public String strOwnerName = ""; | ||
public String strAdminName = ""; | ||
public ArrayList<MemberLevelName> msgLevelNameNew = new ArrayList<>(); | ||
|
||
public long getDataTime() { | ||
return this.dataTime; | ||
} | ||
|
||
public long getEndUin() { | ||
return this.endUin; | ||
} | ||
|
||
public long getGroupCode() { | ||
return this.groupCode; | ||
} | ||
|
||
public int getLevelNameSeq() { | ||
return this.levelNameSeq; | ||
} | ||
|
||
public int getMemberInfoSeq() { | ||
return this.memberInfoSeq; | ||
} | ||
|
||
public ArrayList<MemberExtInfo> getMemberLevelInfo() { | ||
return this.memberLevelInfo; | ||
} | ||
|
||
public ArrayList<MemberLevelName> getMsgLevelName() { | ||
return this.msgLevelName; | ||
} | ||
|
||
public ArrayList<MemberLevelName> getMsgLevelNameNew() { | ||
return this.msgLevelNameNew; | ||
} | ||
|
||
public String getStrAdminName() { | ||
return this.strAdminName; | ||
} | ||
|
||
public String getStrOwnerName() { | ||
return this.strOwnerName; | ||
} | ||
|
||
public int getSysShowFlag() { | ||
return this.sysShowFlag; | ||
} | ||
|
||
public int getTimeToUpdate() { | ||
return this.timeToUpdate; | ||
} | ||
|
||
public int getUserShowFlag() { | ||
return this.userShowFlag; | ||
} | ||
|
||
public int getUserShowFlagNew() { | ||
return this.userShowFlagNew; | ||
} | ||
|
||
public String toString() { | ||
return "GroupMemberExtListResult{groupCode=" + this.groupCode + ",memberLevelInfo=" + this.memberLevelInfo + ",msgLevelName=" + this.msgLevelName + ",endUin=" + this.endUin + ",dataTime=" + this.dataTime + ",userShowFlag=" + this.userShowFlag + ",sysShowFlag=" + this.sysShowFlag + ",timeToUpdate=" + this.timeToUpdate + ",strOwnerName=" + this.strOwnerName + ",strAdminName=" + this.strAdminName + ",levelNameSeq=" + this.levelNameSeq + ",userShowFlagNew=" + this.userShowFlagNew + ",msgLevelNameNew=" + this.msgLevelNameNew + ",memberInfoSeq=" + this.memberInfoSeq + ",}"; | ||
} | ||
|
||
} |
101 changes: 101 additions & 0 deletions
101
qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GroupMemberExtReq.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,101 @@ | ||
package com.tencent.qqnt.kernel.nativeinterface; | ||
|
||
import java.util.ArrayList; | ||
|
||
public class GroupMemberExtReq { | ||
public long groupCode; | ||
public int sourceType; | ||
public String beginUin = ""; | ||
public String dataTime = ""; | ||
public ArrayList<Long> uinList = new ArrayList<>(); | ||
public MemberExtInfoFilter memberExtFilter = new MemberExtInfoFilter(); | ||
public String seq = ""; | ||
public String uinNum = ""; | ||
public String groupType = ""; | ||
public String richCardNameVer = ""; | ||
|
||
public String getBeginUin() { | ||
return this.beginUin; | ||
} | ||
|
||
public String getDataTime() { | ||
return this.dataTime; | ||
} | ||
|
||
public long getGroupCode() { | ||
return this.groupCode; | ||
} | ||
|
||
public String getGroupType() { | ||
return this.groupType; | ||
} | ||
|
||
public MemberExtInfoFilter getMemberExtFilter() { | ||
return this.memberExtFilter; | ||
} | ||
|
||
public String getRichCardNameVer() { | ||
return this.richCardNameVer; | ||
} | ||
|
||
public String getSeq() { | ||
return this.seq; | ||
} | ||
|
||
public int getSourceType() { | ||
return this.sourceType; | ||
} | ||
|
||
public ArrayList<Long> getUinList() { | ||
return this.uinList; | ||
} | ||
|
||
public String getUinNum() { | ||
return this.uinNum; | ||
} | ||
|
||
public void setBeginUin(String str) { | ||
this.beginUin = str; | ||
} | ||
|
||
public void setDataTime(String str) { | ||
this.dataTime = str; | ||
} | ||
|
||
public void setGroupCode(long j2) { | ||
this.groupCode = j2; | ||
} | ||
|
||
public void setGroupType(String str) { | ||
this.groupType = str; | ||
} | ||
|
||
public void setMemberExtFilter(MemberExtInfoFilter memberExtInfoFilter) { | ||
this.memberExtFilter = memberExtInfoFilter; | ||
} | ||
|
||
public void setRichCardNameVer(String str) { | ||
this.richCardNameVer = str; | ||
} | ||
|
||
public void setSeq(String str) { | ||
this.seq = str; | ||
} | ||
|
||
public void setSourceType(int i2) { | ||
this.sourceType = i2; | ||
} | ||
|
||
public void setUinList(ArrayList<Long> arrayList) { | ||
this.uinList = arrayList; | ||
} | ||
|
||
public void setUinNum(String str) { | ||
this.uinNum = str; | ||
} | ||
|
||
public String toString() { | ||
return "GroupMemberExtReq{groupCode=" + this.groupCode + ",beginUin=" + this.beginUin + ",dataTime=" + this.dataTime + ",uinList=" + this.uinList + ",memberExtFilter=" + this.memberExtFilter + ",seq=" + this.seq + ",uinNum=" + this.uinNum + ",groupType=" + this.groupType + ",richCardNameVer=" + this.richCardNameVer + ",sourceType=" + this.sourceType + ",}"; | ||
} | ||
|
||
} |
32 changes: 32 additions & 0 deletions
32
qqinterface/src/main/java/com/tencent/qqnt/kernel/nativeinterface/GroupMemberListResult.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,32 @@ | ||
package com.tencent.qqnt.kernel.nativeinterface; | ||
|
||
import java.util.ArrayList; | ||
import java.util.HashMap; | ||
|
||
public class GroupMemberListResult { | ||
public boolean finish; | ||
public boolean hasRobot; | ||
public ArrayList<GroupMemberInfoListId> ids = new ArrayList<>(); | ||
public HashMap<String, MemberInfo> infos = new HashMap<>(); | ||
|
||
public boolean getFinish() { | ||
return this.finish; | ||
} | ||
|
||
public boolean getHasRobot() { | ||
return this.hasRobot; | ||
} | ||
|
||
public ArrayList<GroupMemberInfoListId> getIds() { | ||
return this.ids; | ||
} | ||
|
||
public HashMap<String, MemberInfo> getInfos() { | ||
return this.infos; | ||
} | ||
|
||
public String toString() { | ||
return "GroupMemberListResult{ids=" + this.ids + ",infos=" + this.infos + ",finish=" + this.finish + ",hasRobot=" + this.hasRobot + ",}"; | ||
} | ||
|
||
} |
Oops, something went wrong.