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_visiting_tasks")
|
// @EncryptDecryptClass
|
public class EventVisitingTasksDO implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
/**
|
* id 列: id
|
*/
|
@TableId(type = IdType.ASSIGN_ID)
|
private Long id;
|
/**
|
* 网格员所处的街道 列: grid_member_street
|
*/
|
private Long gridMemberStreet;
|
/**
|
* 网格员所处社区 列: grid_member_community
|
*/
|
private Long gridMemberCommunity;
|
/**
|
* 网格员 列: grid_member
|
*/
|
private Long gridMember;
|
/**
|
* 网格员名字 列: grid_member_name
|
*/
|
private String gridMemberName;
|
/**
|
* 网格员联系方式 列: grid_menber_tele
|
*/
|
private String gridMenberTele;
|
/**
|
* 需走访人ID 列: visiter_id
|
*/
|
private Long visiterId;
|
/**
|
* 需走访人名字 列: visiter_name
|
*/
|
private String visiterName;
|
/**
|
* 需走访人员性别 列: visiter_sex
|
*/
|
private Integer visiterSex;
|
/**
|
* 需走访人电话 列: visiter_tele
|
*/
|
// @EncryptDecryptField
|
private String visiterTele;
|
/**
|
* 需走访人居住地址 列: visiter_address
|
*/
|
private String visiterAddress;
|
/**
|
* 人员类型1吸毒2严重精神障碍3刑释人员4社区矫正人员 列: visiter_type
|
*/
|
private Integer visiterType;
|
/**
|
* 事件标题 列: event_title
|
*/
|
private String eventTitle;
|
/**
|
* 事件类型 列: event_type
|
*/
|
private Integer eventType;
|
/**
|
* 事件描述 列: event_des
|
*/
|
private String eventDes;
|
/**
|
* 社区处理(0是无需社区1是社区处理) 列: act_opara
|
*/
|
private Integer actOpara;
|
/**
|
* 发生时间 列: happen_time
|
*/
|
private Date happenTime;
|
/**
|
* 发生地点 列: happent_address
|
*/
|
private String happentAddress;
|
/**
|
* 发生的精度纬度信息(逗号隔开) 列: happent_lat_lng
|
*/
|
private String happentLatLng;
|
/**
|
* 事件状态(1待处理2自己已解决3待验证4草稿箱5已撤销6异常) 列: event_status
|
*/
|
private Integer eventStatus;
|
/**
|
* 上报状态 列: reporting
|
*/
|
private Integer reporting;
|
/**
|
* 当前处理对象类型(1、网格员2、社区3、是街道) 列: dell_type
|
*/
|
private Integer dellType;
|
/**
|
* 处理人ID 列: dell_user_id
|
*/
|
private Long dellUserId;
|
/**
|
* 处理人名称 列: dell_user_name
|
*/
|
private String dellUserName;
|
/**
|
* 处理时间 列: dell_date
|
*/
|
private Date dellDate;
|
/**
|
* 解决人针对解决事件的处理描述 列: dell_desc
|
*/
|
private String dellDesc;
|
/**
|
* 是否有效 列: invalid
|
*/
|
private Boolean invalid;
|
/**
|
* 是否紧急 列: urgent
|
*/
|
private Boolean urgent;
|
/**
|
* 是否催办 列: urgent_dell
|
*/
|
private Boolean urgentDell;
|
/**
|
* 上报提交时间 列: submit_date
|
*/
|
private Date submitDate;
|
/**
|
* 是否异常行为 列: exception
|
*/
|
private Integer exception;
|
/**
|
* 走访内容根据重点人员类型输入项不同,录入全部的表单内容数据 列: table_content_json
|
*/
|
private String tableContentJson;
|
/**
|
* 创建人 列: create_by
|
*/
|
private Long createBy;
|
/**
|
* 创建事件 列: create_at
|
*/
|
@TableField(fill = FieldFill.INSERT)
|
private Date createAt;
|
/**
|
* 修改人 列: update_by
|
*/
|
private Long updateBy;
|
/**
|
* 修改时间 列: update_at
|
*/
|
@TableField(fill = FieldFill.UPDATE)
|
private Date updateAt;
|
|
/**
|
* 地址备注
|
*/
|
private String addressRemark;
|
/**
|
* 家庭联系电话
|
*/
|
private String familyPhone;
|
|
/**
|
* 家庭来源
|
*/
|
private String familySource;
|
|
/**
|
* 访问后的填写的地址
|
*/
|
private String address;
|
|
/**
|
* 访问后的经纬度
|
*/
|
private String latLng;
|
|
/**
|
* 本地或外地:1本地2外地
|
*/
|
private Integer outOrLocal;
|
|
/**
|
* 备注
|
*/
|
private String remark;
|
|
/**
|
* 网格ID
|
*/
|
private Long gridId;
|
/**
|
* 是否已经上传浪潮服务器市平台
|
*/
|
private Boolean lcUpload;
|
|
/**
|
* 是否有异常枚举(1.是 0.否)
|
*/
|
public interface exception{
|
int yes = 1;
|
int no = 0;
|
|
}
|
|
/**
|
* 走访任务状态(1.待走访 2.已走访)
|
*/
|
public interface eventStatus{
|
int dzf = 1;
|
int yzf = 2;
|
}
|
}
|