mitao
2025-02-21 31573d6180d15ef65ed0df9c2732495f40b12663
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
package com.panzhihua.service_grid.model.dos;
 
import java.io.Serializable;
import java.util.Date;
 
import com.baomidou.mybatisplus.annotation.*;
 
import lombok.Data;
 
/**
 * 网格员定时上报地理信息实体类
 *
 * @author cedoo email:cedoo(a)qq.com
 * @version 1.0
 * @since 1.0
 * @date 2021-05-26
 */
@Data
@TableName("event_grid_member_gps_log")
public class EventGridMemberGpsLogDO implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    /**
     * 主键ID 列: id
     */
    @TableId(type = IdType.ASSIGN_ID)
    private Long id;
    /**
     * 网格所属街道 列: grid_street_id
     */
    private Long gridStreetId;
    /**
     * 网格所属社区ID 列: grid_community_id
     */
    private Long gridCommunityId;
    /**
     * 网格ID 列: grid_id
     */
    private Long gridId;
    /**
     * 网格名称 列: grid_name
     */
    private String gridName;
    /**
     * 网格员ID 列: grid_member_id
     */
    private Long gridMemberId;
    /**
     * 精度维度信息,逗号分割 列: lng_lat
     */
    private String lngLat;
    /**
     * 位置信息状态(1、为判定2、正常3、是不正常) 列: position_station
     */
    private Integer positionStation;
    /**
     * 创建人 列: create_by
     */
    private Long createBy;
    /**
     * 创建时间 列: create_at
     */
    @TableField(fill = FieldFill.INSERT)
    private Date createAt;
    /**
     * 定位地址信息 列:position_address
     */
    private String positionAddress;
 
    /**
     * 位置信息状态(1、为判定2、正常3、是不正常)
     */
    public interface positionStation {
        int no = 1;
        int normal = 2;
        int abnormal = 3;
    }
}