package com.panzhihua.common.model.dtos.community;
|
|
import com.alibaba.excel.annotation.ExcelProperty;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
/**
|
* Description 重点人员信息
|
* ClassName KeyPersonInfo
|
*
|
* @author manailin
|
*/
|
@Data
|
public class KeyPersonInfoDTO implements Serializable {
|
private static final long serialVersionUID = 1L;
|
/**
|
* 主键
|
*/
|
private Long id;
|
/**
|
* 街道id
|
*/
|
private Long streetId;
|
/**
|
* 姓名
|
*/
|
@ExcelProperty(value = "姓名" ,index = 2)
|
private String name;
|
/**
|
* 性别(取字典表国家编码)
|
*/
|
private String sex;
|
/**
|
* 性别名称
|
*/
|
@ExcelProperty(value = "性别名称" ,index = 3)
|
private String sexName;
|
/**
|
* 身份证号码
|
*/
|
@ExcelProperty(value = "身份证号码" ,index = 4)
|
private String cardNo;
|
/**
|
* 联系方式
|
*/
|
@ExcelProperty(value = "联系方式" ,index = 5)
|
private String phone;
|
/**
|
* 民族
|
*/
|
@ExcelProperty(value = "民族" ,index = 6)
|
private String nation;
|
/**
|
* 户口所在地
|
*/
|
@ExcelProperty(value = "户口所在地" ,index = 7)
|
private String censusRegister;
|
/**
|
* 居住地址
|
*/
|
@ExcelProperty(value = "居住地址" ,index = 8)
|
private String address;
|
/**
|
* 地址精度纬度信息(逗号隔开)
|
*/
|
@ExcelProperty(value = "地址精度纬度信息(逗号隔开)" ,index = 9)
|
private String visiterAddressLatLng;
|
/**
|
* 人员类型1吸毒2严重精神障碍3刑释人员4社区矫正人员
|
*/
|
@ExcelProperty(value = "人员类型1吸毒2严重精神障碍3刑释人员4社区矫正人员" ,index = 10)
|
private Integer visiterType;
|
/**
|
* (法轮功类填写)基本情况
|
*/
|
private String basicInfo;
|
/**
|
* 是否有效
|
*/
|
@ExcelProperty(value = "是否有效" ,index = 11)
|
private Boolean invalid;
|
/**
|
* 备注
|
*/
|
@ExcelProperty(value = "备注" ,index = 12)
|
private String note;
|
/**
|
* 文化程度(取字典表国家编码))
|
*/
|
@ExcelProperty(value = "文化程度" ,index = 13)
|
private String cultureLevel;
|
/**
|
* 经济状态
|
*/
|
@ExcelProperty(value = "经济状态" ,index = 14)
|
private String economicLevel;
|
/**
|
* 修改人
|
*/
|
private Long updateBy;
|
/**
|
* 修改时间
|
*/
|
private Date updateAt;
|
/**
|
* 创建人
|
*/
|
private Long createBy;
|
/**
|
* (精神类人群填写)目前诊断
|
*/
|
@ExcelProperty(value = "目前诊断" ,index = 18)
|
private String diagnose;
|
/**
|
* 上报提交时间
|
*/
|
private Date submitDate;
|
/**
|
* (精神类人群填写)监护人名称
|
*/
|
@ExcelProperty(value = "监护人名称" ,index = 20)
|
private String guardian;
|
/**
|
* (精神类人群填写)监护人电话
|
*/
|
@ExcelProperty(value = "监护人电话" ,index = 21)
|
private String guardianPhone;
|
/**
|
* (精神类人群填写)监护人关系
|
*/
|
@ExcelProperty(value = "监护人关系" ,index = 22)
|
private String guardianRelation;
|
/**
|
* 创建时间
|
*/
|
private Date createAt;
|
/**
|
* 社区id
|
*/
|
|
private Long actId;
|
/**
|
* 小区id(实有房屋id)
|
*/
|
|
private Long villageId;
|
/**
|
* 用户ID
|
*/
|
|
private Long userId;
|
|
}
|