Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

修改添加企业客户标签后无返回信息 #1699

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 14 commits into from
Aug 6, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ public WxCpUserExternalTagGroupList getCorpTagList(String[] tagId) throws WxErro
public WxCpUserExternalTagGroupInfo addCorpTag(WxCpUserExternalTagGroupInfo tagGroup) throws WxErrorException{

final String url = this.mainService.getWxCpConfigStorage().getApiUrl(ADD_CORP_TAG);
final String result = this.mainService.post(url,tagGroup.toJson());
final String result = this.mainService.post(url,tagGroup.getTagGroup().toJson());
return WxCpUserExternalTagGroupInfo.fromJson(result);
}

Expand All @@ -262,7 +262,7 @@ public WxCpBaseResp delCorpTag(String[] tagId, String[] groupId) throws WxErrorE
json.add("tag_id",new Gson().toJsonTree(tagId).getAsJsonArray());
}
if(ArrayUtils.isNotEmpty(groupId)){
json.add("group_id",new Gson().toJsonTree(tagId).getAsJsonArray());
json.add("group_id",new Gson().toJsonTree(groupId).getAsJsonArray());
}

final String url = this.mainService.getWxCpConfigStorage().getApiUrl(DEL_CORP_TAG);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,24 +15,35 @@
@Setter
public class WxCpUserExternalTagGroupInfo extends WxCpBaseResp {

@SerializedName("group_id")
private String groupId;
@SerializedName("tag_group")
private TagGroup tagGroup;

@SerializedName("group_name")
private String groupName;
@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("create_time")
private Long createTime;

@SerializedName("order")
private Integer order;
@SerializedName("order")
private Integer order;

@SerializedName("deleted")
private Boolean deleted;
@SerializedName("deleted")
private Boolean deleted;

@SerializedName("tag")
private List<Tag> tag;

@SerializedName("tag")
private List<Tag> tag;
public String toJson() {
return WxGsonBuilder.create().toJson(this);
}
}

@Getter
@Setter
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -117,20 +117,20 @@ public void testAddCorpTag() throws WxErrorException {

List<WxCpUserExternalTagGroupInfo.Tag> list = new ArrayList<>();
WxCpUserExternalTagGroupInfo.Tag tag = new WxCpUserExternalTagGroupInfo.Tag();
tag.setName("测试标签2");
tag.setName("测试标签20");
tag.setOrder(1);
list.add(tag);

WxCpUserExternalTagGroupInfo tagGroup = new WxCpUserExternalTagGroupInfo();
WxCpUserExternalTagGroupInfo tagGroupInfo = new WxCpUserExternalTagGroupInfo();
WxCpUserExternalTagGroupInfo.TagGroup tagGroup = new WxCpUserExternalTagGroupInfo.TagGroup();
tagGroup.setGroupName("其他");
tagGroup.setOrder(1);
tagGroup.setTag(list);
tagGroupInfo.setTagGroup(tagGroup);

WxCpUserExternalTagGroupInfo result = this.wxCpService.getExternalContactService().addCorpTag(tagGroup);
WxCpUserExternalTagGroupInfo result = this.wxCpService.getExternalContactService().addCorpTag(tagGroupInfo);



System.out.println(result);
System.out.println(result.toJson());
assertNotNull(result);
}

Expand All @@ -146,8 +146,8 @@ public void testEditCorpTag() throws WxErrorException {
@Test
public void testDelCorpTag() throws WxErrorException {

String tagId[] = {"et2omCCwAA6PtGsfeEOQMENl3Ub1FA6A"};
String groupId[] = {};
String tagId[] = {};
String groupId[] = {"et2omCCwAAM3WzL00QpK9xARab3HGkAg"};

WxCpBaseResp result = this.wxCpService.getExternalContactService().delCorpTag(tagId,groupId);

Expand Down
Morty Proxy This is a proxified and sanitized view of the page, visit original site.