1 package com.foxinmy.weixin4j.mp.model.shakearound;
2
3 import com.alibaba.fastjson.annotation.JSONField;
4
5
6
7
8
9
10
11
12
13 public class ShakeUserInfo {
14
15
16 @JSONField(name = "page_id")
17 private Long pageId;
18 @JSONField(name = "beacon_info")
19 private Device device;
20
21 @JSONField(name = "poi_id")
22 private Long poiId;
23
24 @JSONField(name = "openid")
25 private String openId;
26
27 public Long getPageId() {
28 return pageId;
29 }
30
31 public void setPageId(Long pageId) {
32 this.pageId = pageId;
33 }
34
35 public Device getDevice() {
36 return device;
37 }
38
39 public void setDevice(Device device) {
40 this.device = device;
41 }
42
43 public Long getPoiId() {
44 return poiId;
45 }
46
47 public void setPoiId(Long poiId) {
48 this.poiId = poiId;
49 }
50
51 public String getOpenId() {
52 return openId;
53 }
54
55 public void setOpenId(String openId) {
56 this.openId = openId;
57 }
58 }