mirror of
				https://gitee.com/binary/weixin-java-tools.git
				synced 2025-10-31 18:46:10 +08:00 
			
		
		
		
	增加微信推送卡券转赠事件中所需两个属性 #211
This commit is contained in:
		| @ -209,6 +209,18 @@ public class WxMpXmlMessage implements Serializable { | ||||
|   @XStreamAlias("OuterStr") | ||||
|   private String outerStr; | ||||
|  | ||||
|   /** | ||||
|    * 是否转赠退回,0代表不是,1代表是。 | ||||
|    */ | ||||
|   @XStreamAlias("IsReturnBack") | ||||
|   private String isReturnBack; | ||||
|  | ||||
|   /** | ||||
|    * 是否是群转赠,0代表不是,1代表是。 | ||||
|    */ | ||||
|   @XStreamAlias("IsChatRoom") | ||||
|   private String isChatRoom; | ||||
|  | ||||
|   @XStreamAlias("ScanCodeInfo") | ||||
|   private ScanCodeInfo scanCodeInfo = new ScanCodeInfo(); | ||||
|  | ||||
| @ -833,6 +845,22 @@ public class WxMpXmlMessage implements Serializable { | ||||
|     this.outerStr = outerStr; | ||||
|   } | ||||
|  | ||||
|   public String getIsReturnBack() { | ||||
|     return isReturnBack; | ||||
|   } | ||||
|  | ||||
|   public void setIsReturnBack(String isReturnBack) { | ||||
|     this.isReturnBack = isReturnBack; | ||||
|   } | ||||
|  | ||||
|   public String getIsChatRoom() { | ||||
|     return isChatRoom; | ||||
|   } | ||||
|  | ||||
|   public void setIsChatRoom(String isChatRoom) { | ||||
|     this.isChatRoom = isChatRoom; | ||||
|   } | ||||
|  | ||||
|   @Override | ||||
|   public String toString() { | ||||
|     return ToStringUtils.toSimpleString(this); | ||||
|  | ||||
		Reference in New Issue
	
	Block a user
	 Binary Wang
					Binary Wang