From c1da2d73a394c61eb364da793050bb4aa03a3ac3 Mon Sep 17 00:00:00 2001 From: Jackwang Date: Mon, 30 Aug 2021 16:02:03 +0800 Subject: [PATCH] =?UTF-8?q?=E5=BF=97=E6=84=BF=E5=B0=8F=E7=A8=8B=E5=BA=8F?= =?UTF-8?q?=E6=8E=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../epdc/volunteer/AppVolunteerDetailDTO.java | 68 +++++++++++++++++++ 1 file changed, 68 insertions(+) create mode 100644 epdc-cloud-heart-client/src/main/java/com/elink/esua/epdc/volunteer/AppVolunteerDetailDTO.java diff --git a/epdc-cloud-heart-client/src/main/java/com/elink/esua/epdc/volunteer/AppVolunteerDetailDTO.java b/epdc-cloud-heart-client/src/main/java/com/elink/esua/epdc/volunteer/AppVolunteerDetailDTO.java new file mode 100644 index 0000000..07a0273 --- /dev/null +++ b/epdc-cloud-heart-client/src/main/java/com/elink/esua/epdc/volunteer/AppVolunteerDetailDTO.java @@ -0,0 +1,68 @@ +package com.elink.esua.epdc.volunteer; + +import lombok.Data; + +import java.io.Serializable; +import java.util.List; + +/** + * @program: epdc-cloud-heart-yushan + * @description: + * @author: wangtong + * @create: 2021-08-29 09:49 + **/ +@Data +public class AppVolunteerDetailDTO implements Serializable { + + /** + * 主键 + */ + private String id; + + /** + * 姓名 + */ + private String realName; + + /** + * 身份证 + */ + private String idCard; + + /** + * 电话 + */ + private String mobile; + + /** + * 自我介绍 + */ + private String introduceInfo; + + /** + * 认证状态:0审核中 1审核通过 2审核驳回 + */ + private String state; + + /** + * 状态名称 + */ + private String stateName; + + /** + * 审核理由 + */ + private String reason; + + /** + * 组织id + */ + private List volunteerOrgIds; + + /** + * 认组织 + */ + private String volunteerOrgNames; + + +} \ No newline at end of file