微信后端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

135 lines
2.3 KiB

package com.ynxbd.wx.wxfactory.bean.event;
import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;
import lombok.ToString;
import org.w3c.dom.Element;
import weixin.popular.bean.message.AroundBeacon;
import weixin.popular.bean.message.ChosenBeacon;
import weixin.popular.bean.message.CopyrightCheckResult;
import java.util.List;
@Getter
@Setter
@NoArgsConstructor
@ToString
public class WxEventMessage {
private String toUserName;
private String fromUserName;
private Integer createTime;
private String msgType;
private String event;
private String eventKey;
private String msgId;
private String content;
private String picUrl;
private String mediaId;
private String format;
private String recognition;
private String thumbMediaId;
private String location_X;
private String location_Y;
private String scale;
private String label;
private String title;
private String description;
private String url;
private String ticket;
private String latitude;
private String longitude;
private String precision;
private String status;
private Integer totalCount;
private Integer filterCount;
private Integer sentCount;
private Integer errorCount;
private Integer expiredTime;
private Integer failTime;
private String failReason;
private String uniqId;
private String poiId;
private String result;
private String msg;
private String lotteryId;
private Integer money;
private Integer bindTime;
private Integer connectTime;
private Integer expireTime;
private String vendorId;
private String shopId;
private String deviceNo;
private String keyStandard;
private String keyStr;
private String country;
private String province;
private String city;
private Integer sex;
private Integer scene;
private String regionCode;
private Integer reasonMsg;
private ChosenBeacon chosenBeacon;
private CopyrightCheckResult copyrightCheckResult;
private List<AroundBeacon> aroundBeacons;
private List<Element> otherElements;
}