| @@ -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; | ||||
| } | } | ||||