14 changed files with 765 additions and 10 deletions
@ -0,0 +1,108 @@ |
|||
/** |
|||
* 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; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
import java.util.Date; |
|||
|
|||
|
|||
/** |
|||
* 免校验PC用户(针对隐私数据,免验证码校验) |
|||
* |
|||
* @author qu qu@elink-cn.com |
|||
* @since v1.0.0 2021-12-22 |
|||
*/ |
|||
@Data |
|||
public class VerificationFreeUserDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
/** |
|||
* ID |
|||
*/ |
|||
private String id; |
|||
|
|||
/** |
|||
* 用户管理表主键 |
|||
*/ |
|||
private Long sysUserId; |
|||
|
|||
/** |
|||
* 校验标识 0:否,1:是 |
|||
*/ |
|||
private String verificationFlag; |
|||
|
|||
/** |
|||
* 删除标识 0:未删除,1:已删除 |
|||
*/ |
|||
private String delFlag; |
|||
|
|||
/** |
|||
* 乐观锁 |
|||
*/ |
|||
private Integer revision; |
|||
|
|||
/** |
|||
* 创建人 |
|||
*/ |
|||
private String createdBy; |
|||
|
|||
/** |
|||
* 创建时间 |
|||
*/ |
|||
private Date createdTime; |
|||
|
|||
/** |
|||
* 更新人 |
|||
*/ |
|||
private String updatedBy; |
|||
|
|||
/** |
|||
* 更新时间 |
|||
*/ |
|||
private Date updatedTime; |
|||
|
|||
// sys_ser 关联属性
|
|||
|
|||
/** |
|||
* 用户名 |
|||
*/ |
|||
private String username; |
|||
|
|||
/** |
|||
* 姓名 |
|||
*/ |
|||
private String realName; |
|||
|
|||
/** |
|||
* 手机号 |
|||
*/ |
|||
private String mobile; |
|||
|
|||
/** |
|||
* 邮箱 |
|||
*/ |
|||
private String email; |
|||
|
|||
/** |
|||
* 所属部门 |
|||
*/ |
|||
private String deptName; |
|||
} |
@ -0,0 +1,366 @@ |
|||
/** |
|||
* 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.analysis.pc.epidemic; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
|
|||
/** |
|||
* 基础信息同步记录表 |
|||
* |
|||
* @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 String createdTime; |
|||
|
|||
/** |
|||
* 更新人 |
|||
*/ |
|||
private String updatedBy; |
|||
|
|||
/** |
|||
* 更新时间 |
|||
*/ |
|||
private String updatedTime; |
|||
|
|||
/** |
|||
* 逻辑删除标识 |
|||
*/ |
|||
private String delFlag; |
|||
|
|||
/** |
|||
* 同步时间 |
|||
*/ |
|||
private String syncDate; |
|||
|
|||
/** |
|||
* 同步状态,空:未同步,0同步成功,1同步失败 |
|||
*/ |
|||
private String syncFlag; |
|||
|
|||
} |
@ -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<DsfUserInfoSyncDTO> list; |
|||
} |
@ -0,0 +1,47 @@ |
|||
/** |
|||
* 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.analysis.pc.epidemic; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
import java.util.Date; |
|||
|
|||
|
|||
/** |
|||
* |
|||
* |
|||
* @author qu qu@elink-cn.com |
|||
* @since v1.0.0 2022-01-11 |
|||
*/ |
|||
@Data |
|||
public class EpidemicUserSyncDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
/** |
|||
* 主键 |
|||
*/ |
|||
private String id; |
|||
|
|||
/** |
|||
* 同步时间 |
|||
*/ |
|||
private Date syncDate; |
|||
|
|||
} |
@ -0,0 +1,29 @@ |
|||
package com.elink.esua.epdc.dto; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @program: epdc-cloud-user-yushan |
|||
* @description: |
|||
* @author: wangtong |
|||
* @create: 2022-02-13 14:34 |
|||
**/ |
|||
@Data |
|||
public class PointsUpdateFormDTO implements Serializable { |
|||
|
|||
/** |
|||
* 行为类型: |
|||
* 双十信息更新-double_info_update |
|||
* 网格巡查-grid_patrol |
|||
* 网格上报事件-grid_report_event |
|||
* 网格工作上传-grid_work_upload |
|||
*/ |
|||
private String behaviorType; |
|||
|
|||
/** |
|||
* 手机号 |
|||
*/ |
|||
private String mobile; |
|||
} |
@ -0,0 +1,92 @@ |
|||
/** |
|||
* 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; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
import java.util.Date; |
|||
|
|||
|
|||
/** |
|||
* 用户签到表 |
|||
* |
|||
* @author qu qu@elink-cn.com |
|||
* @since v1.0.0 2020-07-21 |
|||
*/ |
|||
@Data |
|||
public class UserSignDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
/** |
|||
* 主键 |
|||
*/ |
|||
private String id; |
|||
|
|||
/** |
|||
* 用户ID |
|||
*/ |
|||
private String userId; |
|||
|
|||
/** |
|||
* 连续签到天数 |
|||
*/ |
|||
private Integer consequentSignDays; |
|||
|
|||
/** |
|||
* 最近签到时间 |
|||
*/ |
|||
private Date lastSignTime; |
|||
|
|||
/** |
|||
* 删除标记 |
|||
*/ |
|||
private String delFlag; |
|||
|
|||
/** |
|||
* 乐观锁 |
|||
*/ |
|||
private Integer revision; |
|||
|
|||
/** |
|||
* 创建人 |
|||
*/ |
|||
private String createdBy; |
|||
|
|||
/** |
|||
* 创建时间 |
|||
*/ |
|||
private Date createdTime; |
|||
|
|||
/** |
|||
* 更新人 |
|||
*/ |
|||
private String updatedBy; |
|||
|
|||
/** |
|||
* 更新时间 |
|||
*/ |
|||
private Date updatedTime; |
|||
|
|||
/** |
|||
* 用户认证网格 |
|||
*/ |
|||
private Long gridId; |
|||
|
|||
} |
Loading…
Reference in new issue