VolunteerVo.java 672 Bytes
Newer Older
licc's avatar
licc committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
package cn.wisenergy.model.vo;

import cn.wisenergy.model.app.Volunteer;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;

import java.util.Date;
import java.util.List;

/**
*@ Description: 方案查询志愿列表
*@ Author     : 86187
*@ Date       : 2021/1/13 14:57
*/
@Data
@ApiModel(value = "VolunteerVo")
public class VolunteerVo {
    /**
     * 用户id
     */
    @ApiModelProperty(value = "用户id",name = "userId")
    private Integer userId;

    /**
     * 志愿信息列表
     */
    @ApiModelProperty(value = "志愿信息列表",name = "volunteers")
    private List<Volunteer> volunteers;
}