|
@@ -136,7 +136,12 @@ public class SysCodeConfigureUtils {
|
|
|
*/
|
|
|
public static List<String> getWxOpenIds(String expand) {
|
|
|
JSONObject exp = getExpandNoticeSet(expand);
|
|
|
- return exp.getBeanList("wxOpenIds", String.class);
|
|
|
+ String wxOpenIds = exp.getStr("wxOpenIds");
|
|
|
+ if (StrUtil.isEmpty(wxOpenIds)) {
|
|
|
+ return new ArrayList<>();
|
|
|
+ }
|
|
|
+ List<String> stringList = StrUtil.split(wxOpenIds, StrUtil.COMMA);
|
|
|
+ return stringList;
|
|
|
}
|
|
|
|
|
|
/**
|