From 4d37ce6dd984d2a1ff57ee9cb54bd335e646d9fb Mon Sep 17 00:00:00 2001 From: Jackwang Date: Fri, 3 Sep 2021 14:25:18 +0800 Subject: [PATCH] =?UTF-8?q?=E5=B0=8F=E7=A8=8B=E5=BA=8F=E5=BF=97=E6=84=BF?= =?UTF-8?q?=E6=B4=BB=E5=8A=A8=E5=BC=80=E5=8F=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../esua/epdc/volunteer/AppVactDetailDTO.java | 46 +++++++++++++++++++ .../epdc/volunteer/AppVactPageListDTO.java | 27 +++++++++++ 2 files changed, 73 insertions(+) create mode 100644 epdc-cloud-heart-client/src/main/java/com/elink/esua/epdc/volunteer/AppVactDetailDTO.java create mode 100644 epdc-cloud-heart-client/src/main/java/com/elink/esua/epdc/volunteer/AppVactPageListDTO.java diff --git a/epdc-cloud-heart-client/src/main/java/com/elink/esua/epdc/volunteer/AppVactDetailDTO.java b/epdc-cloud-heart-client/src/main/java/com/elink/esua/epdc/volunteer/AppVactDetailDTO.java new file mode 100644 index 0000000..66ea7f0 --- /dev/null +++ b/epdc-cloud-heart-client/src/main/java/com/elink/esua/epdc/volunteer/AppVactDetailDTO.java @@ -0,0 +1,46 @@ +package com.elink.esua.epdc.volunteer; + +import lombok.Data; + +import java.io.Serializable; + +/** + * @program: epdc-cloud-heart-yushan + * @description: + * @author: wangtong + * @create: 2021-09-03 11:00 + **/ +@Data +public class AppVactDetailDTO implements Serializable { + + private String id; + + private String title; + + private String actStartTime; + + private String actEndTime; + + private String actAddress; + + private String headPic; + + private String requirement; + + private String actContent; + + private String volunteerFlag; + + private String contacts; + + private String tel; + + private String actLatitude; + + private String actLongitude; + + private String stateName; + + private String reason; + +} \ No newline at end of file diff --git a/epdc-cloud-heart-client/src/main/java/com/elink/esua/epdc/volunteer/AppVactPageListDTO.java b/epdc-cloud-heart-client/src/main/java/com/elink/esua/epdc/volunteer/AppVactPageListDTO.java new file mode 100644 index 0000000..4c5bf3a --- /dev/null +++ b/epdc-cloud-heart-client/src/main/java/com/elink/esua/epdc/volunteer/AppVactPageListDTO.java @@ -0,0 +1,27 @@ +package com.elink.esua.epdc.volunteer; + +import lombok.Data; + +import java.io.Serializable; + +/** + * @program: epdc-cloud-heart-yushan + * @description: + * @author: wangtong + * @create: 2021-09-03 10:50 + **/ +@Data +public class AppVactPageListDTO implements Serializable { + + + private String id; + + private String title; + + private String stateName; + + private String createdTime; + + private String state; + +} \ No newline at end of file