AerialDeliveryVo.java 599 Bytes
Newer Older
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
package cn.wisenergy.model.vo;

import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;

import java.util.List;

/**
*@ Description: 空投池Vo
*@ Author     : 86187
*@ Date       : 2021/3/6 10:29
 * @author 86187
 */
@Data
@ApiModel("AerialDeliveryVo")
public class AerialDeliveryVo {
    /**
     * 总数
     */
    @ApiModelProperty(value = "总数",name = "total")
    private Integer total;

    /**
     * 用户列表
     */
    @ApiModelProperty(value = "用户列表",name = "userPoolVos")
    private List<UserPoolVo> userPoolVos;
}