2 changed files with 73 additions and 0 deletions
@ -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; |
|||
|
|||
} |
@ -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; |
|||
|
|||
} |
Loading…
Reference in new issue