package com.panzhihua.service_user.model.dos; import java.io.Serializable; import java.util.Date; import com.baomidou.mybatisplus.annotation.*; import lombok.Data; /** * @program: springcloud_k8s_panzhihuazhihuishequ * @description: 居民导入数据 * @author: huang.hongfa weixin hhf9596 qq 959656820 * @create: 2021-02-05 17:37 **/ @Data @TableName("sys_user_input") public class SysUserInputDO implements Serializable { private static final long serialVersionUID = 1L; /** * id */ @TableId(type = IdType.ASSIGN_ID) private Long id; /** * 门牌号 */ private String doorNumber; /** * 是否租住 0 不是 1 是 */ private Integer isRent; /** * 姓名 */ private String name; /** * 民族 */ private String nation; /** * 政治面貌:1 - 党员;2 - 团员;3 - 群众 */ private Integer politicalOutlook; /** * 0 未婚 1 已婚 */ private Integer maritalStatus; /** * 联系方式 */ private String phone; /** * 文化程度 */ private String education; /** * 身份证 */ private String idCard; /** * 工作单位(学校) */ private String company; /** * 户口所在地 */ private String residence; /** * 目前是否在攀枝花 0 否 1 是 */ private Integer isPanzhihua; /** * 近一个月离(返)攀情况 */ private String situation; /** * 是否有与疑似或确诊病例密切接触史 0 否 1 是 */ private Integer isContact; /** * 是否特殊情况(重大过往病史或者孕妇) 0 否 1是 */ private Integer major; /** * 是否退伍军人 0 否 1是 */ private Integer soldier; /** * 是否低保户 0 否 1是 */ private Integer lowIncomeHouseholds; /** * 是否低收入人员 0否 1是 */ private Integer lowIncomePeople; /** * 是否高龄老人 0否 1是 */ private Integer oldPeople; /** * 是否特服家庭 0 否 1是 */ private Integer specialServiceFamily; /** * 是否重点人员 0 否 1是 */ private Integer keyPersonnel; /** * 社区id */ private Long communityId; /** * 小区id */ private Long areaId; /** * create_at */ @TableField(fill = FieldFill.INSERT) private Date createAt; /** * update_at */ @TableField(fill = FieldFill.INSERT_UPDATE) private Date updateAt; /** * 房屋编码 */ private String houseCode; /** * 残疾人 */ private Integer disability; /** * 标签 */ @TableField(updateStrategy = FieldStrategy.IGNORED) private String tags; }