1
2
3
4
5
6
7
8
9
10
11
12
13
14
| package com.ycl.vo;
|
| import io.swagger.annotations.ApiModel;
| import io.swagger.annotations.ApiModelProperty;
| import lombok.Data;
|
| import java.util.List;
|
| @Data
| @ApiModel(value = "趋势分析")
| public class TrendAnalysisVo {
| List<TrendVo> timeList;
| List<TrendVo> typeList;
| }
|
|