mirror of
https://gitee.com/binary/weixin-java-tools.git
synced 2025-11-02 12:38:22 +08:00
🐛 【企业微信】修复部分参数类型
This commit is contained in:
@ -16,6 +16,7 @@ import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
/**
|
||||
* sxh 修改版本,有些参数类型错误,修正版
|
||||
* 回调推送的message
|
||||
* https://work.weixin.qq.com/api/doc#90001/90143/90612
|
||||
*
|
||||
@ -333,7 +334,7 @@ public class WxCpTpXmlMessage implements Serializable {
|
||||
@XStreamAlias("NewOrderId")
|
||||
@XStreamConverter(value = XStreamCDataConverter.class)
|
||||
private String newOrderId;
|
||||
|
||||
|
||||
@Data
|
||||
@XStreamAlias("ContactSync")
|
||||
public static class ContactSync implements Serializable {
|
||||
@ -383,13 +384,13 @@ public class WxCpTpXmlMessage implements Serializable {
|
||||
private static final long serialVersionUID = 6031833682211475786L;
|
||||
|
||||
@XStreamAlias("ThirdNo")
|
||||
protected Long thirdNo;
|
||||
protected String thirdNo;
|
||||
|
||||
@XStreamAlias("OpenSpName")
|
||||
protected String openSpName;
|
||||
|
||||
@XStreamAlias("OpenTemplateId")
|
||||
protected Integer openTemplateId;
|
||||
protected String openTemplateId;
|
||||
|
||||
@XStreamAlias("OpenSpStatus")
|
||||
protected Integer openSpStatus;
|
||||
@ -401,7 +402,7 @@ public class WxCpTpXmlMessage implements Serializable {
|
||||
protected String applyUserName;
|
||||
|
||||
@XStreamAlias("ApplyUserId")
|
||||
protected Integer applyUserId;
|
||||
protected String applyUserId;
|
||||
|
||||
@XStreamAlias("ApplyUserParty")
|
||||
protected String applyUserParty;
|
||||
@ -447,7 +448,7 @@ public class WxCpTpXmlMessage implements Serializable {
|
||||
@XStreamAlias("ItemName")
|
||||
protected String itemName;
|
||||
@XStreamAlias("ItemUserId")
|
||||
protected Integer itemUserId;
|
||||
protected String itemUserId;
|
||||
@XStreamAlias("ItemImage")
|
||||
protected String itemImage;
|
||||
@XStreamAlias("ItemStatus")
|
||||
@ -467,7 +468,7 @@ public class WxCpTpXmlMessage implements Serializable {
|
||||
@XStreamAlias("ItemName")
|
||||
protected String itemName;
|
||||
@XStreamAlias("ItemUserId")
|
||||
protected Integer itemUserId;
|
||||
protected String itemUserId;
|
||||
@XStreamAlias("ItemImage")
|
||||
protected String itemImage;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user