diff --git a/epdc-cloud-analysis-pc-client/src/main/java/com/elink/esua/epdc/dto/analysis/pc/epidemic/DsfUserInfoSyncDTO.java b/epdc-cloud-analysis-pc-client/src/main/java/com/elink/esua/epdc/dto/analysis/pc/epidemic/DsfUserInfoSyncDTO.java new file mode 100644 index 0000000..0538d6a --- /dev/null +++ b/epdc-cloud-analysis-pc-client/src/main/java/com/elink/esua/epdc/dto/analysis/pc/epidemic/DsfUserInfoSyncDTO.java @@ -0,0 +1,367 @@ +/** + * 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.analysis.pc.epidemic; + +import lombok.Data; + +import java.io.Serializable; +import java.util.Date; + + +/** + * 基础信息同步记录表 + * + * @author zhy qu@elink-cn.com + * @since v1.0.0 2022-01-07 + */ +@Data +public class DsfUserInfoSyncDTO 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 String gender; + + /** + * 民族 + */ + private String nation; + + /** + * 曾用名 + */ + private String formerName; + + /** + * 出生年月 + */ + private String birthday; + + /** + * 身高 + */ + private String height; + + /** + * 文化程度 + */ + private String standardOfCulture; + + /** + * 健康情况 + */ + private String health; + + /** + * 婚姻状况 + */ + private String maritalStatus; + + /** + * 与户主关系 + */ + private String relation; + + /** + * 国籍 + */ + private String nationality; + + /** + * 政治面貌 + */ + private String politicsStatus; + + /** + * 宗教信仰 + */ + private String faith; + + /** + * 毕业院校 + */ + private String graduateSchool; + + /** + * 专业 + */ + private String professional; + + /** + * 工作状态 + */ + private String workStatus; + + /** + * 行业类别 + */ + private String industryCategory; + + /** + * 工作单位(现/原) + */ + private String workUnits; + + /** + * 兵役状况 + */ + private String military; + + /** + * 人口类别 + */ + private String peopleCategories; + + /** + * 特殊人群 + */ + private String specialCrowd; + + /** + * 有无车辆 + */ + private String car; + + /** + * 车牌号 + */ + private String carNo; + + /** + * 人户状况 + */ + private String hushaiStatus; + + /** + * 籍贯 + */ + private String nativePlace; + + /** + * 血型 + */ + private String bloodType; + + /** + * 手机号或座机号 + */ + private String mobile; + + /** + * 往返情况(1:在平阴 2在外地) + */ + private String returnState; + + /** + * 县内居住地code + */ + private String liveAddressCode; + + /** + * 县内居住地镇街 + */ + private String liveAddressName; + + /** + * 县内居住地详细地址 + */ + private String liveAddressDetail; + + /** + * 县内居住地关联人 + */ + private String relationPeople; + + /** + * 县内居住地关联人手机号或座机号 + */ + private String relationPeopleMobile; + + /** + * 现居住地code + */ + private String outLiveAddressCode; + + /** + * 现居住地名称 + */ + private String outLiveAddressName; + + /** + * 现居住地详细地址 + */ + private String outLiveAddressDetail; + + /** + * 现居住地疫情风险等级(1:低风险,2:中风险,3:高风险) + */ + private String riskGrade; + + /** + * 拟返回平阴时间 + */ + private String goBarkTime; + + /** + * 拟离开平阴时间 + */ + private String leaveTime; + + /** + * 拟去往目的地code + */ + private String destinationAddressCode; + + /** + * 拟去往目的地名称 + */ + private String destinationAddressName; + + /** + * 拟去往目的地详细地址 + */ + private String destinationAddressDetail; + + /** + * + */ + private String communityId; + + /** + * 社区/村庄 + */ + private String community; + + /** + * + */ + private String gridId; + + /** + * 网格名称 + */ + private String gridName; + + /** + * 小区 + */ + private String plot; + + /** + * 楼号 + */ + private String buildingNo; + + /** + * 单元 + */ + private String unit; + + /** + * 房间号 + */ + private String roomNo; + + /** + * 房屋性质 + */ + private String houseProperty; + + /** + * 家庭保障情况 + */ + private String familySecurity; + + /** + * 居住情况 + */ + private String livingSituation; + + /** + * 乐观锁 + */ + private Integer revision; + + /** + * 创建人 + */ + private String createdBy; + + /** + * 创建时间 + */ + private Date createdTime; + + /** + * 更新人 + */ + private String updatedBy; + + /** + * 更新时间 + */ + private Date updatedTime; + + /** + * 逻辑删除标识 + */ + private String delFlag; + + /** + * 同步时间 + */ + private String syncDate; + + /** + * 同步状态,空:未同步,0同步成功,1同步失败 + */ + private String syncFlag; + +} diff --git a/epdc-cloud-analysis-pc-client/src/main/java/com/elink/esua/epdc/dto/analysis/pc/epidemic/DsfUserInfoSyncTotalDTO.java b/epdc-cloud-analysis-pc-client/src/main/java/com/elink/esua/epdc/dto/analysis/pc/epidemic/DsfUserInfoSyncTotalDTO.java new file mode 100644 index 0000000..c10027c --- /dev/null +++ b/epdc-cloud-analysis-pc-client/src/main/java/com/elink/esua/epdc/dto/analysis/pc/epidemic/DsfUserInfoSyncTotalDTO.java @@ -0,0 +1,19 @@ +package com.elink.esua.epdc.dto.analysis.pc.epidemic; + +import lombok.Data; + +import java.io.Serializable; +import java.util.List; + +/** + * @program: epdc-cloud-analysis-pc-yushan + * @description: + * @author: wangtong + * @create: 2022-01-12 09:23 + **/ +@Data +public class DsfUserInfoSyncTotalDTO implements Serializable { + + + private List list; +}