package com.panzhihua.common.model.vos.community.bigscreen; import java.util.List; import com.panzhihua.common.model.vos.community.StatisticsCommVO; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import lombok.Data; /** * @title: BigScreenHatchStatisticsInfo * @projectName: 成都呐喊信息技术有限公司-智慧社区项目 * @description: 孵化中心大屏统计数据 * @author: hans * @date: 2022/05/31 17:50 */ @Data @ApiModel("孵化中心大屏统计数据") public class BigScreenHatchStatisticsInfo { @ApiModelProperty("孵化中心数量/孵化进度数量") private Integer hatchCenterTotal; @ApiModelProperty("西区社区组织数量") private Integer westAreaOrgTotal; @ApiModelProperty("孵化成果数量") private Integer hatchResultTotal; @ApiModelProperty(value = "孵化进程占比圆形图数据") private List hatchScheduleCircleData; @ApiModelProperty(value = "孵化状态占比柱形数据") private List hatchStatusColumnData; @ApiModelProperty(value = "街道组织占比柱形数据") private List streetOrgColumnData; }