From b033676565093ca2bd98e845e4994e9a992bf6a7 Mon Sep 17 00:00:00 2001 From: zhangyuan Date: Fri, 1 Jul 2022 09:33:06 +0800 Subject: [PATCH] yanzhenglei --- .../EpidemicUserInfoAuditResultDTO.java | 293 ++++++++++++++++++ 1 file changed, 293 insertions(+) create mode 100644 epdc-cloud-custom-client/src/main/java/com/elink/esua/epdc/dto/epidemic/result/EpidemicUserInfoAuditResultDTO.java diff --git a/epdc-cloud-custom-client/src/main/java/com/elink/esua/epdc/dto/epidemic/result/EpidemicUserInfoAuditResultDTO.java b/epdc-cloud-custom-client/src/main/java/com/elink/esua/epdc/dto/epidemic/result/EpidemicUserInfoAuditResultDTO.java new file mode 100644 index 0000000..aff0f52 --- /dev/null +++ b/epdc-cloud-custom-client/src/main/java/com/elink/esua/epdc/dto/epidemic/result/EpidemicUserInfoAuditResultDTO.java @@ -0,0 +1,293 @@ +/** + * Copyright 2018 人人开源 https://www.renren.io + *

+ * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + *

+ * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + *

+ * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +package com.elink.esua.epdc.dto.epidemic.result; + +import lombok.Data; + +import java.io.Serializable; +import java.util.Date; + + +/** + * 疫情防控信息表 + * + * @author zhy qu@elink-cn.com + * @since v1.0.0 2022-06-29 + */ +@Data +public class EpidemicUserInfoAuditResultDTO implements Serializable { + + private static final long serialVersionUID = 1L; + + /** + * 主键 + */ + private Long id; + + /** + * 姓名 + */ + private String userName; + + /** + * 姓名 + */ + private String lastUserName; + + /** + * 身份证号 + */ + private String idCard; + + /** + * 身份证号 + */ + private String lastIdCard; + + /** + * 户籍地code + */ + private String householdRegisterCode; + + /** + * 户籍地名称 + */ + private String householdRegisterName; + + /** + * 户籍地名称 + */ + private String lastHouseholdRegisterName; + + /** + * 户籍地详细地址 + */ + private String householdRegisterDetail; + + /** + * 户籍地详细地址 + */ + private String lastHouseholdRegisterDetail; + + /** + * 乐观锁 + */ + private Integer revision; + + /** + * 创建人 + */ + private String createdBy; + + /** + * 创建时间 + */ + private Date createdTime; + + /** + * 更新人 + */ + private String updatedBy; + + /** + * 更新时间 + */ + private Date updatedTime; + + /** + * 逻辑删除标识 + */ + private String delFlag; + + /** + * 性别 + */ + private String gender; + + /** + * 性别 + */ + private String lastGender; + + /** + * 民族 + */ + private String nation; + + /** + * 民族 + */ + private String lastNation; + + /** + * 与户主关系 + */ + private String relation; + + /** + * 与户主关系 + */ + private String lastRelation; + + /** + * 年龄 + */ + private Integer age; + + /** + * 年龄 + */ + private Integer lastAge; + + /** + * 县内居住地code + */ + private String liveAddressCode; + + /** + * 县内居住地镇街 + */ + private String liveAddressName; + + /** + * 社区/村庄 + */ + private String community; + + /** + * 网格名称 + + */ + private String gridName; + + /** + * 手机号或座机号 + */ + private String mobile; + + /** + * 手机号或座机号 + */ + private String lastMobile; + + /** + * 所属部门ID + */ + private Long deptId; + + /** + * 所属部门 + */ + private String deptName; + + /** + * 父所有部门 + */ + private String parentDeptIds; + + /** + * 父所有部门 + */ + private String parentDeptNames; + + /** + * 所有部门ID + */ + private String allDeptIds; + + /** + * 所有部门名称 + */ + private String allDeptNames; + + /** + * 小区 + */ + private String plot; + + /** + * 楼号 + */ + private String buildingNo; + + /** + * 单元 + */ + private String unit; + + /** + * 房间号 + */ + private String roomNo; + + /** + * 现居住地详细地址 + */ + private String outLiveAddressDetail; + + /** + * 现居住地详细地址 + */ + private String lastOutLiveAddressDetail; + + /** + * 现居住地code + */ + private String outLiveAddressCode; + + /** + * 现居住地名称 + */ + private String outLiveAddressName; + + /** + * 现居住地名称 + */ + private String lastOutLiveAddressName; + + /** + * infoID + */ + private Long userId; + + /** + * recordID + */ + private Long recordId; + + /** + * 房屋ID + */ + private Long unitId; + + /** + * 审核类型 0 新增 1 修改 + */ + private String auditType; + + /** + * 状态 0-待审核,2-审核不通过,4-审核通过 + */ + private String auditState; + + /** + * 审核原因 + */ + private String auditReason; + +} \ No newline at end of file