From 33f8f89de3d6582a3042c018bfab60310117ea9a Mon Sep 17 00:00:00 2001 From: Jackwang Date: Sun, 29 Aug 2021 11:43:08 +0800 Subject: [PATCH] =?UTF-8?q?=E5=BF=97=E6=84=BF=E8=AE=A4=E8=AF=81=E5=AE=A1?= =?UTF-8?q?=E6=A0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../esua/epdc/volunteer/VolunteerPageDTO.java | 62 +++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 epdc-cloud-heart-client/src/main/java/com/elink/esua/epdc/volunteer/VolunteerPageDTO.java diff --git a/epdc-cloud-heart-client/src/main/java/com/elink/esua/epdc/volunteer/VolunteerPageDTO.java b/epdc-cloud-heart-client/src/main/java/com/elink/esua/epdc/volunteer/VolunteerPageDTO.java new file mode 100644 index 0000000..349b932 --- /dev/null +++ b/epdc-cloud-heart-client/src/main/java/com/elink/esua/epdc/volunteer/VolunteerPageDTO.java @@ -0,0 +1,62 @@ +package com.elink.esua.epdc.volunteer; + +import lombok.Data; + +import java.io.Serializable; + +/** + * @program: epdc-cloud-heart-yushan + * @description: + * @author: wangtong + * @create: 2021-08-29 09:49 + **/ +@Data +public class VolunteerPageDTO 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; + + /** + * 认组织 + */ + private String volunteerOrgNames; + + +} \ No newline at end of file