nidapeng
2024-03-17 c85d1d67ffcf657b7d63b3c0d3d6cdd946505339
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;
}