🐛 #1699 企业微信模块修复添加企业客户标签接口
* 外部联系人客户详情新增增加字段 增加字段: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> * 修改添加企业客户标签后无返回信息 Signed-off-by: huangxiaoming <huangxm129@163.com> * 外部联系人客户详情新增增加字段 增加字段: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> * 修改 add_way字段错误 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>
This commit is contained in:
@@ -239,7 +239,7 @@ public class WxCpExternalContactServiceImpl implements WxCpExternalContactServic
|
||||
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);
|
||||
}
|
||||
|
||||
@@ -262,7 +262,7 @@ public class WxCpExternalContactServiceImpl implements WxCpExternalContactServic
|
||||
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);
|
||||
|
||||
@@ -15,24 +15,35 @@ import java.util.List;
|
||||
@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("create_time")
|
||||
private Long createTime;
|
||||
@SerializedName("group_id")
|
||||
private String groupId;
|
||||
|
||||
@SerializedName("order")
|
||||
private Integer order;
|
||||
@SerializedName("group_name")
|
||||
private String groupName;
|
||||
|
||||
@SerializedName("deleted")
|
||||
private Boolean deleted;
|
||||
@SerializedName("create_time")
|
||||
private Long createTime;
|
||||
|
||||
@SerializedName("order")
|
||||
private Integer order;
|
||||
|
||||
@SerializedName("tag")
|
||||
private List<Tag> tag;
|
||||
@SerializedName("deleted")
|
||||
private Boolean deleted;
|
||||
|
||||
@SerializedName("tag")
|
||||
private List<Tag> tag;
|
||||
|
||||
public String toJson() {
|
||||
return WxGsonBuilder.create().toJson(this);
|
||||
}
|
||||
}
|
||||
|
||||
@Getter
|
||||
@Setter
|
||||
|
||||
Reference in New Issue
Block a user