File tree Expand file tree Collapse file tree 1 file changed +28
-0
lines changed
weixin-java-mp/src/main/java/me/chanjar/weixin/mp/bean/message Expand file tree Collapse file tree 1 file changed +28
-0
lines changed Original file line number Diff line number Diff line change @@ -209,6 +209,18 @@ public class WxMpXmlMessage implements Serializable {
209209 @ XStreamAlias ("OuterStr" )
210210 private String outerStr ;
211211
212+ /**
213+ * 是否转赠退回,0代表不是,1代表是。
214+ */
215+ @ XStreamAlias ("IsReturnBack" )
216+ private String isReturnBack ;
217+
218+ /**
219+ * 是否是群转赠,0代表不是,1代表是。
220+ */
221+ @ XStreamAlias ("IsChatRoom" )
222+ private String isChatRoom ;
223+
212224 @ XStreamAlias ("ScanCodeInfo" )
213225 private ScanCodeInfo scanCodeInfo = new ScanCodeInfo ();
214226
@@ -833,6 +845,22 @@ public void setOuterStr(String outerStr) {
833845 this .outerStr = outerStr ;
834846 }
835847
848+ public String getIsReturnBack () {
849+ return isReturnBack ;
850+ }
851+
852+ public void setIsReturnBack (String isReturnBack ) {
853+ this .isReturnBack = isReturnBack ;
854+ }
855+
856+ public String getIsChatRoom () {
857+ return isChatRoom ;
858+ }
859+
860+ public void setIsChatRoom (String isChatRoom ) {
861+ this .isChatRoom = isChatRoom ;
862+ }
863+
836864 @ Override
837865 public String toString () {
838866 return ToStringUtils .toSimpleString (this );
You can’t perform that action at this time.
0 commit comments