| package com.doumee.dao.business.vo; | 
|   | 
| import java.util.List; | 
| import io.swagger.annotations.ApiModelProperty; | 
| import lombok.Data; | 
|   | 
|   | 
| @Data | 
| public class InParkUserDataVO { | 
|   | 
|     @ApiModelProperty(value = "今日总数") | 
|     private Integer todayTotal; | 
|   | 
|     @ApiModelProperty(value = "昨日总数") | 
|     private Integer yesterdayTotal; | 
|   | 
|     @ApiModelProperty(value = "本周总数") | 
|     private Integer weekTotal; | 
|   | 
|     @ApiModelProperty(value = "本月总数") | 
|     private Integer monthTotal; | 
|   | 
|     @ApiModelProperty(value = "本年总数") | 
|     private Integer yearTotal; | 
|   | 
|     @ApiModelProperty(value = "分类占比 - 扇形图") | 
|     List<GeneralDataVO> rataList; | 
|   | 
|     @ApiModelProperty(value = "本年累计统计") | 
|     List<GeneralDataVO> cumulativeDataList; | 
|   | 
|     @ApiModelProperty(value = "年度入园统计排序") | 
|     List<GeneralDataVO> yearSortList; | 
|   | 
| } |