2 changed files with 28 additions and 1 deletions
@ -0,0 +1,27 @@ |
|||
package com.elink.esua.epdc.dto.epdc.result; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
import java.util.List; |
|||
|
|||
|
|||
/** |
|||
* @author: qushutong |
|||
* @Date: 2020/7/20 13:51 |
|||
* @Description:移动端接口-志愿者列表接口返回值 |
|||
*/ |
|||
@Data |
|||
public class EpdcAppVolunteerListCountResultDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 3908231797102233188L; |
|||
|
|||
/** |
|||
* 志愿者数量 |
|||
*/ |
|||
private Integer volunteerCount; |
|||
/** |
|||
* 列表 |
|||
*/ |
|||
List<EpdcAppVolunteerListResultDTO> volunteerList; |
|||
} |
Loading…
Reference in new issue