From b4e5f6ec34df2c1b3c4271f04bd616033fb73f48 Mon Sep 17 00:00:00 2001 From: wanggongfeng <1305282856@qq.com> Date: Thu, 9 Jun 2022 17:29:35 +0800 Subject: [PATCH] =?UTF-8?q?=E6=88=91=E7=9A=84=E5=AE=B6=E5=BA=AD=E7=9B=B8?= =?UTF-8?q?=E5=85=B3=E6=8E=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../form/FamilyMemberInfoFormDTO.java | 72 +++++++++++++++++++ .../personroom/form/GetMemberListFormDTO.java | 45 ++++++++++++ .../result/FamilyMemberInfoResultDTO.java | 66 +++++++++++++++++ 3 files changed, 183 insertions(+) create mode 100644 epdc-cloud-custom-client/src/main/java/com/elink/esua/epdc/dto/personroom/form/FamilyMemberInfoFormDTO.java create mode 100644 epdc-cloud-custom-client/src/main/java/com/elink/esua/epdc/dto/personroom/form/GetMemberListFormDTO.java create mode 100644 epdc-cloud-custom-client/src/main/java/com/elink/esua/epdc/dto/personroom/result/FamilyMemberInfoResultDTO.java 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 new file mode 100644 index 0000000..bbdaee7 --- /dev/null +++ b/epdc-cloud-custom-client/src/main/java/com/elink/esua/epdc/dto/personroom/form/FamilyMemberInfoFormDTO.java @@ -0,0 +1,72 @@ +package com.elink.esua.epdc.dto.personroom.form; + +import lombok.Data; + +import javax.validation.constraints.NotBlank; +import java.io.Serializable; + + +/** + * 成员信息 + * + * @author Mark sunlightcs@gmail.com + * @since 1.0.0 2021-01-19 + */ +@Data +public class FamilyMemberInfoFormDTO implements Serializable { + private static final long serialVersionUID = 1L; + + // ID + private Long userId; + + // ID + private Long recordId; + + // 姓名 + @NotBlank(message = "姓名不能为空") + private String userName; + + // 手机号 + @NotBlank(message = "手机号不能为空") + private String mobile; + + // 身份证 + @NotBlank(message = "身份证不能为空") + private String idCard; + + // 性别 + @NotBlank(message = "性别不能为空") + private String gender; + + // 出生日期 + @NotBlank(message = "出生日期不能为空") + private String birthday; + + // 民族 + private String nation; + + // 户籍地code + private String householdRegisterCode; + + // 户籍地名称 + private String householdRegisterName; + + // 户籍地详细地址 + private String householdRegisterDetail; + + // 与户主关系 + private String relation; + + // 现居住地编码 + private String outLiveAddressCode; + + // 现居住地名称 + private String outLiveAddressName; + + // 现居住地详细地址 + private String outLiveAddressDetail; + + + + +} diff --git a/epdc-cloud-custom-client/src/main/java/com/elink/esua/epdc/dto/personroom/form/GetMemberListFormDTO.java b/epdc-cloud-custom-client/src/main/java/com/elink/esua/epdc/dto/personroom/form/GetMemberListFormDTO.java new file mode 100644 index 0000000..0879da0 --- /dev/null +++ b/epdc-cloud-custom-client/src/main/java/com/elink/esua/epdc/dto/personroom/form/GetMemberListFormDTO.java @@ -0,0 +1,45 @@ +/** + * 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.personroom.form; + +import lombok.Data; + +import javax.validation.constraints.NotBlank; +import java.io.Serializable; + +/** + * 获取成员信息 + * + * @author wanggongfeng + * @since v1.0.0 2022-06-09 + */ +@Data +public class GetMemberListFormDTO implements Serializable { + + private static final long serialVersionUID = 1L; + + + /** + * 身份证号 + */ + @NotBlank(message = "身份证号不能为空") + private String idCard; + + + +} 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 new file mode 100644 index 0000000..9499583 --- /dev/null +++ b/epdc-cloud-custom-client/src/main/java/com/elink/esua/epdc/dto/personroom/result/FamilyMemberInfoResultDTO.java @@ -0,0 +1,66 @@ +package com.elink.esua.epdc.dto.personroom.result; + +import lombok.Data; + +import java.io.Serializable; + + +/** + * 成员信息 + * + * @author Mark sunlightcs@gmail.com + * @since 1.0.0 2021-01-19 + */ +@Data +public class FamilyMemberInfoResultDTO implements Serializable { + private static final long serialVersionUID = 1L; + + // epidemic_user_info主键 + private Long userId; + + // epidemic_user_inout_record主键 + private Long recordId; + + // 姓名 + private String userName; + + // 手机号 + private String mobile; + + // 身份证 + private String idCard; + + // 性别 + private String gender; + + // 出生日期 + private String birthday; + + // 民族 + private String nation; + + // 户籍地code + private String householdRegisterCode; + + // 户籍地名称 + private String householdRegisterName; + + // 户籍地详细地址 + private String householdRegisterDetail; + + // 与户主关系 + private String relation; + + // 现居住地编码 + private String outLiveAddressCode; + + // 现居住地名称 + private String outLiveAddressName; + + // 现居住地详细地址 + private String outLiveAddressDetail; + + + + +}