File tree Expand file tree Collapse file tree 1 file changed +1
-13
lines changed
weixin-java-cp/src/main/java/me/chanjar/weixin/cp/bean Expand file tree Collapse file tree 1 file changed +1
-13
lines changed Original file line number Diff line number Diff line change @@ -37,24 +37,12 @@ public static WxCpInviteResult fromJson(String json) {
37
37
private String errMsg ;
38
38
39
39
@ SerializedName ("invaliduser" )
40
- private String invalidUsers ;
40
+ private String [] invalidUsers ;
41
41
42
42
@ SerializedName ("invalidparty" )
43
43
private String [] invalidParties ;
44
44
45
45
@ SerializedName ("invalidtag" )
46
46
private String [] invalidTags ;
47
47
48
- public List <String > getInvalidUserList () {
49
- return this .content2List (this .invalidUsers );
50
- }
51
-
52
- private List <String > content2List (String content ) {
53
- if (StringUtils .isBlank (content )) {
54
- return Collections .emptyList ();
55
- }
56
-
57
- return Splitter .on ("|" ).splitToList (content );
58
- }
59
-
60
48
}
You can’t perform that action at this time.
0 commit comments