-
-
Notifications
You must be signed in to change notification settings - Fork 8.8k
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
1 parent
0758049
commit 694f2c2
Showing
7 changed files
with
272 additions
and
1 deletion.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -90,6 +90,11 @@ | |
<email>[email protected]</email> | ||
<url>https://github.com/howardliu-cn</url> | ||
</developer> | ||
<developer> | ||
<name>huangxiaoming</name> | ||
<email>[email protected]</email> | ||
<url>https://github.com/huangxm129</url> | ||
</developer> | ||
</developers> | ||
|
||
<scm> | ||
|
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
69 changes: 69 additions & 0 deletions
69
weixin-java-cp/src/main/java/me/chanjar/weixin/cp/bean/WxCpUserExternalTagGroup.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,69 @@ | ||
package me.chanjar.weixin.cp.bean; | ||
|
||
import com.google.gson.annotations.SerializedName; | ||
import lombok.Getter; | ||
import lombok.Setter; | ||
import me.chanjar.weixin.common.util.json.WxGsonBuilder; | ||
import me.chanjar.weixin.cp.util.json.WxCpGsonBuilder; | ||
|
||
import java.util.List; | ||
|
||
/** | ||
* | ||
*/ | ||
@Getter | ||
@Setter | ||
public class WxCpUserExternalTagGroup extends WxCpBaseResp { | ||
|
||
@SerializedName("group_id") | ||
private String groupId; | ||
|
||
@SerializedName("group_name") | ||
private String groupName; | ||
|
||
@SerializedName("create_time") | ||
private Long createTime; | ||
|
||
@SerializedName("order") | ||
private Integer order; | ||
|
||
@SerializedName("deleted") | ||
private Boolean deleted; | ||
|
||
|
||
@SerializedName("tag") | ||
private List<Tag> tag; | ||
|
||
@Getter | ||
@Setter | ||
public static class Tag { | ||
|
||
/** | ||
* 客户群ID | ||
*/ | ||
@SerializedName("id") | ||
private String id; | ||
|
||
|
||
@SerializedName("name") | ||
private String name; | ||
|
||
@SerializedName("create_time") | ||
private Long createTime; | ||
|
||
@SerializedName("order") | ||
private Integer order; | ||
|
||
@SerializedName("deleted") | ||
private Boolean deleted; | ||
|
||
} | ||
|
||
public String toJson() { | ||
return WxGsonBuilder.create().toJson(this); | ||
} | ||
|
||
public static WxCpUserExternalTagGroup fromJson(String json) { | ||
return WxCpGsonBuilder.create().fromJson(json, WxCpUserExternalTagGroup.class); | ||
} | ||
} |
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