From 7b7c169b96b5d49cd4fca66e5efe4a8f85239b51 Mon Sep 17 00:00:00 2001 From: tangxiaobao <303826152@qq.com> Date: 星期四, 09 九月 2021 18:18:22 +0800 Subject: [PATCH] 用户设置标签bug修改 --- springcloud_k8s_panzhihuazhihuishequ/service_user/src/main/java/com/panzhihua/service_user/model/dos/SysUserInputDO.java | 177 +++++++++++++++++++++++++++++++++++++++++++++++++++++++--- 1 files changed, 167 insertions(+), 10 deletions(-) diff --git a/springcloud_k8s_panzhihuazhihuishequ/service_user/src/main/java/com/panzhihua/service_user/model/dos/SysUserInputDO.java b/springcloud_k8s_panzhihuazhihuishequ/service_user/src/main/java/com/panzhihua/service_user/model/dos/SysUserInputDO.java index 9741653..1e624bc 100644 --- a/springcloud_k8s_panzhihuazhihuishequ/service_user/src/main/java/com/panzhihua/service_user/model/dos/SysUserInputDO.java +++ b/springcloud_k8s_panzhihuazhihuishequ/service_user/src/main/java/com/panzhihua/service_user/model/dos/SysUserInputDO.java @@ -1,11 +1,168 @@ -package com.panzhihua.service_user.model.dos;/** -* @program: springcloud_k8s_panzhihuazhihuishequ -* -* @description: 居民导入数据 -* -* @author: huang.hongfa weixin hhf9596 qq 959656820 -* -* @create: 2021-02-05 17:37 -**/ -public class SysUserInputDO { +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.AUTO) + 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; } -- Gitblit v1.7.1