15 changed files with 149 additions and 10 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 Liuchuang |
|||
* @since 2021/1/25 15:01 |
|||
*/ |
|||
@Data |
|||
public class VolunteerTagsSumResultDTO implements Serializable { |
|||
private static final long serialVersionUID = 8355829005926490150L; |
|||
|
|||
|
|||
|
|||
/** |
|||
* 类别名称 |
|||
*/ |
|||
private String typeName; |
|||
|
|||
private List<VolunteerTagsResultDTO> lists; |
|||
|
|||
} |
Loading…
Reference in new issue