-
-
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.
* 外部联系人客户详情新增增加字段 增加字段:remark_corp_name,addWay,oper_userid Signed-off-by: huangxiaoming <huangxm129@163.com> * 修改测试类 Signed-off-by: huangxiaoming <huangxm129@163.com> * 客户标签组查询列表功能修改 Signed-off-by: huangxiaoming <huangxm129@163.com> * 修改测试类 Signed-off-by: huangxiaoming <huangxm129@163.com> * 修改 add_way字段错误 Signed-off-by: huangxiaoming <huangxm129@163.com>
- Loading branch information
1 parent
2755bc9
commit a776e9c
Showing
7 changed files
with
100 additions
and
23 deletions.
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
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
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
75 changes: 75 additions & 0 deletions
75
weixin-java-cp/src/main/java/me/chanjar/weixin/cp/bean/WxCpUserExternalTagGroupList.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,75 @@ | ||
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 WxCpUserExternalTagGroupList extends WxCpBaseResp { | ||
|
||
@SerializedName("tag_group") | ||
private List<WxCpUserExternalTagGroupList.TagGroup> tagGroupList; | ||
|
||
@Getter | ||
@Setter | ||
public static class TagGroup{ | ||
@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 WxCpUserExternalTagGroupList fromJson(String json) { | ||
return WxCpGsonBuilder.create().fromJson(json, WxCpUserExternalTagGroupList.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