8000 【企业微信】WxCpXmlMessage客户联系回调字段补充 by Musuer · Pull Request #2078 · binarywang/WxJava · GitHub
[go: up one dir, main page]

Skip to content

【企业微信】WxCpXmlMessage客户联系回调字段补充 #2078

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 1 commit into from
Apr 15, 2021
Merged
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 @@ -317,9 +317,11 @@ public class WxCpXmlMessage implements Serializable {

/**
* 部门Id.
* 或者客户联系回调标签/标签组id
*/
@XStreamAlias("Id")
private Long id;
@XStreamConverter(XStreamCDataConverter.class)
private String id;

/**
* 父部门id.
Expand Down Expand Up @@ -370,6 +372,20 @@ public class WxCpXmlMessage implements Serializable {
@XStreamConverter(value = XStreamCDataConverter.class)
private String delPartyItems;

/**
* 客户联系回调: 客户接替失败的原因
*/
@XStreamAlias("FailReason")
@XStreamConverter(XStreamCDataConverter.class)
private String failReason;

/**
* 客户联系回调: 标签类型
*/
@XStreamAlias("TagType")
@XStreamConverter(XStreamCDataConverter.class)
private String tagType;


///////////////////////////////////////
// 群发消息返回的结果
Expand Down
0