|
16 | 16 | public class WxCpCheckinData implements Serializable {
|
17 | 17 | private static final long serialVersionUID = 1915820330847799605L;
|
18 | 18 |
|
| 19 | + /** |
| 20 | + * userid 用户id |
| 21 | + */ |
19 | 22 | @SerializedName("userid")
|
20 | 23 | private String userId;
|
21 | 24 |
|
| 25 | + /** |
| 26 | + * groupname 打卡规则名称 |
| 27 | + */ |
22 | 28 | @SerializedName("groupname")
|
23 | 29 | private String groupName;
|
24 | 30 |
|
| 31 | + /** |
| 32 | + * checkin_type 打卡类型。字符串,目前有:上班打卡,下班打卡,外出打卡 |
| 33 | + */ |
25 | 34 | @SerializedName("checkin_type")
|
26 | 35 | private String checkinType;
|
27 | 36 |
|
| 37 | + /** |
| 38 | + * exception_type 异常类型,字符串,包括:时间异常,地点异常,未打卡,wifi异常,非常用设备。如果有多个异常,以分号间隔 |
| 39 | + */ |
28 | 40 | @SerializedName("exception_type")
|
29 | 41 | private String exceptionType;
|
30 | 42 |
|
| 43 | + /** |
| 44 | + * checkin_time 打卡时间。Unix时间戳 |
| 45 | + */ |
31 | 46 | @SerializedName("checkin_time")
|
32 | 47 | private Long checkinTime;
|
33 | 48 |
|
| 49 | + /** |
| 50 | + * location_title 打卡地点title |
| 51 | + */ |
34 | 52 | @SerializedName("location_title")
|
35 | 53 | private String locationTitle;
|
36 | 54 |
|
| 55 | + /** |
| 56 | + * location_detail 打卡地点详情 |
| 57 | + */ |
37 | 58 | @SerializedName("location_detail")
|
38 | 59 | private String locationDetail;
|
39 | 60 |
|
| 61 | + /** |
| 62 | + * wifiname 打卡wifi名称 |
| 63 | + */ |
40 | 64 | @SerializedName("wifiname")
|
41 | 65 | private String wifiName;
|
42 | 66 |
|
| 67 | + /** |
| 68 | + * wifimac 打卡的MAC地址/bssid |
| 69 | + */ |
43 | 70 | @SerializedName("wifimac")
|
44 | 71 | private String wifiMac;
|
45 | 72 |
|
| 73 | + /** |
| 74 | + * notes 打卡备注 |
| 75 | + */ |
46 | 76 | private String notes;
|
47 | 77 |
|
| 78 | + /** |
| 79 | + * mediaids 打卡的附件media_id,可使用media/get获取附件 |
| 80 | + */ |
48 | 81 | @SerializedName("mediaids")
|
49 | 82 | private List<String> mediaIds;
|
50 | 83 |
|
| 84 | + /** |
| 85 | + * lat 位置打卡地点纬度,是实际纬度的1000000倍,与腾讯地图一致采用GCJ-02坐标系统标准 |
| 86 | + */ |
51 | 87 | private Integer lat;
|
52 | 88 |
|
| 89 | + /** |
| 90 | + * lng 位置打卡地点经度,是实际经度的1000000倍,与腾讯地图一致采用GCJ-02坐标系统标准 |
| 91 | + */ |
53 | 92 | private Integer lng;
|
| 93 | + |
| 94 | + /** |
| 95 | + * deviceid 打卡设备id |
| 96 | + */ |
| 97 | + @SerializedName("deviceid") |
| 98 | + private String deviceId; |
54 | 99 | }
|
0 commit comments