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;
|
}
|