1 changed files with 293 additions and 0 deletions
@ -0,0 +1,293 @@ |
|||
/** |
|||
* Copyright 2018 人人开源 https://www.renren.io
|
|||
* <p> |
|||
* 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. |
|||
* <p> |
|||
* 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. |
|||
* <p> |
|||
* You should have received a copy of the GNU General Public License |
|||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|||
*/ |
|||
|
|||
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; |
|||
|
|||
} |
Loading…
Reference in new issue