1
0
mirror of synced 2026-02-09 12:17:54 +08:00

🎨 修复获取共享应用列表返回类型错误的问题

This commit is contained in:
Cherry
2023-10-29 16:54:01 +08:00
committed by Binary Wang
parent f936325b0c
commit eef62676aa
2 changed files with 3 additions and 2 deletions

View File

@@ -39,7 +39,7 @@ public class WxCpCorpGroupServiceImpl implements WxCpCorpGroupService {
JsonObject tmpJson = GsonParser.parse(responseContent);
return WxCpGsonBuilder.create().fromJson(tmpJson.get("corp_list"),
new TypeToken<List<WxCpCorpGroupCorpListAppShareInfoResp>>() {
new TypeToken<List<WxCpCorpGroupCorp>>() {
}.getType()
);
}