package com.panzhihua.common.model.vos.community.bigscreen;
|
|
import java.util.List;
|
|
import com.panzhihua.common.model.vos.community.ComMngVolunteerMngVO;
|
|
import io.swagger.annotations.ApiModelProperty;
|
import lombok.Data;
|
|
/**
|
* @title: VolunteerOrgRelationVO
|
* @projectName: 成都呐喊信息技术有限公司-智慧社区项目
|
* @description: 志愿者组织关系
|
* @author: hans
|
* @date: 2022/03/03 13:30
|
*/
|
@Data
|
public class VolunteerOrgRelationVO {
|
|
@ApiModelProperty("组织")
|
private String org;
|
|
@ApiModelProperty("组织人数")
|
private Integer orgPersonNum;
|
|
@ApiModelProperty("志愿者")
|
List<ComMngVolunteerMngVO> volunteers;
|
}
|