mirror of
https://gitee.com/binary/weixin-java-tools.git
synced 2025-08-23 22:11:40 +08:00
增加卡券的FriendUserName字段
This commit is contained in:
parent
89e092b04d
commit
65c532e45b
@ -157,6 +157,10 @@ public class WxMpXmlMessage implements Serializable {
|
|||||||
@XStreamConverter(value=XStreamCDataConverter.class)
|
@XStreamConverter(value=XStreamCDataConverter.class)
|
||||||
private String cardId;
|
private String cardId;
|
||||||
|
|
||||||
|
@XStreamAlias("FriendUserName")
|
||||||
|
@XStreamConverter(value=XStreamCDataConverter.class)
|
||||||
|
private String friendUserName;
|
||||||
|
|
||||||
@XStreamAlias("IsGiveByFriend")
|
@XStreamAlias("IsGiveByFriend")
|
||||||
private Integer isGiveByFriend; // 是否为转赠,1代表是,0代表否
|
private Integer isGiveByFriend; // 是否为转赠,1代表是,0代表否
|
||||||
|
|
||||||
@ -485,6 +489,14 @@ public class WxMpXmlMessage implements Serializable {
|
|||||||
this.cardId = cardId;
|
this.cardId = cardId;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public String getFriendUserName() {
|
||||||
|
return friendUserName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setFriendUserName(String friendUserName) {
|
||||||
|
this.friendUserName = friendUserName;
|
||||||
|
}
|
||||||
|
|
||||||
public Integer getIsGiveByFriend() {
|
public Integer getIsGiveByFriend() {
|
||||||
return isGiveByFriend;
|
return isGiveByFriend;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user