''
liukangdong
2024-05-28 125924f74e3cb309e4a49de304a09e5edc8d75b6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.doumee.model;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.util.List;
 
@Data
@ApiModel("车辆进出场和访客统计数据")
public class CountListResponse {
 
    @ApiModelProperty(value = "横坐标日期数据集合", example = "1")
    private List<String> timeList;
    @ApiModelProperty(value = "纵坐标数据集合(车辆进场、访客数)", example = "1")
    private List<Integer> dataList;
    @ApiModelProperty(value = "纵坐标数据集合2(车辆出场)", example = "1")
    private List<Integer> secDataList;
}