diff --git a/epdc-cloud-custom-client/src/main/java/com/elink/esua/epdc/dto/EpidemicUserInfoAuditDTO.java b/epdc-cloud-custom-client/src/main/java/com/elink/esua/epdc/dto/EpidemicUserInfoAuditDTO.java new file mode 100644 index 0000000..dd00532 --- /dev/null +++ b/epdc-cloud-custom-client/src/main/java/com/elink/esua/epdc/dto/EpidemicUserInfoAuditDTO.java @@ -0,0 +1,237 @@ +/** + * 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; + +import java.io.Serializable; +import java.util.Date; +import lombok.Data; + + +/** + * 疫情防控信息表 + * + * @author zhy qu@elink-cn.com + * @since v1.0.0 2022-06-29 + */ +@Data +public class EpidemicUserInfoAuditDTO implements Serializable { + + private static final long serialVersionUID = 1L; + + /** + * 主键 + */ + private Long id; + + /** + * 姓名 + */ + private String userName; + + /** + * 身份证号 + */ + private String idCard; + + /** + * 户籍地code + */ + private String householdRegisterCode; + + /** + * 户籍地名称 + */ + private String householdRegisterName; + + /** + * 户籍地详细地址 + */ + private String householdRegisterDetail; + + /** + * 乐观锁 + */ + private Integer revision; + + /** + * 创建人 + */ + private String createdBy; + + /** + * 创建时间 + */ + private Date createdTime; + + /** + * 更新人 + */ + private String updatedBy; + + /** + * 更新时间 + */ + private Date updatedTime; + + /** + * 逻辑删除标识 + */ + private String delFlag; + + /** + * 性别 + */ + private String gender; + + /** + * 民族 + */ + private String nation; + + /** + * 与户主关系 + */ + private String relation; + + /** + * 年龄 + */ + private Integer age; + + /** + * 县内居住地code + */ + private String liveAddressCode; + + /** + * 县内居住地镇街 + */ + private String liveAddressName; + + /** + * 社区/村庄 + */ + private String community; + + /** + * 网格名称 + + */ + private String gridName; + + /** + * 手机号或座机号 + */ + private String mobile; + + /** + * 所属部门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; + + /** + * 现居住地code + */ + private String outLiveAddressCode; + + /** + * 现居住地名称 + */ + private String outLiveAddressName; + + /** + * 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 diff --git a/epdc-cloud-custom-client/src/main/java/com/elink/esua/epdc/dto/personroom/form/FamilyMemberInfoFormDTO.java b/epdc-cloud-custom-client/src/main/java/com/elink/esua/epdc/dto/personroom/form/FamilyMemberInfoFormDTO.java index edb34d3..76db116 100644 --- a/epdc-cloud-custom-client/src/main/java/com/elink/esua/epdc/dto/personroom/form/FamilyMemberInfoFormDTO.java +++ b/epdc-cloud-custom-client/src/main/java/com/elink/esua/epdc/dto/personroom/form/FamilyMemberInfoFormDTO.java @@ -69,7 +69,8 @@ public class FamilyMemberInfoFormDTO implements Serializable { // 现居住地详细地址 private String outLiveAddressDetail; - - - + /** + * 需要审核 0否 1是 + */ + private String needAudit; } diff --git a/epdc-cloud-custom-client/src/main/java/com/elink/esua/epdc/dto/personroom/result/FamilyMemberInfoResultDTO.java b/epdc-cloud-custom-client/src/main/java/com/elink/esua/epdc/dto/personroom/result/FamilyMemberInfoResultDTO.java index 9499583..8f7f482 100644 --- a/epdc-cloud-custom-client/src/main/java/com/elink/esua/epdc/dto/personroom/result/FamilyMemberInfoResultDTO.java +++ b/epdc-cloud-custom-client/src/main/java/com/elink/esua/epdc/dto/personroom/result/FamilyMemberInfoResultDTO.java @@ -60,7 +60,19 @@ public class FamilyMemberInfoResultDTO implements Serializable { // 现居住地详细地址 private String outLiveAddressDetail; - - + /** + * 审核类型 0 新增 1 修改 + */ + private String auditType; + + /** + * 状态 0-待审核,2-审核不通过,4-审核通过 + */ + private String auditState; + + /** + * 审核原因 + */ + private String auditReason; }