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