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
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_warn_log")
public class EventGridMemberWarnLogDO 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;
    /**
     * 预警信息内容 列: content
     */
    private String content;
    /**
     * 创建人 列: create_by
     */
    private Long createBy;
    /**
     * 创建时间 列: create_at
     */
    @TableField(fill = FieldFill.INSERT)
    private Date createAt;
    /**
     * 定位地址信息 列:position_address
     */
    private String positionAddress;
    /**
     * 发生时间 列:happen_at
     */
    private Date happenAt;
}