package com.iailab.module.data.common.dto.echarts;
|
|
import io.swagger.v3.oas.annotations.tags.Tag;
|
import lombok.Data;
|
|
import java.io.Serializable;
|
import java.util.List;
|
|
/**
|
* @author lirm
|
* @Description
|
* @createTime 2023.05.11
|
*/
|
@Data
|
@Tag(name = "图表")
|
public class BarLineDTO implements Serializable {
|
private static final long serialVersionUID = 1L;
|
|
private String valueName;//表名称
|
|
private List<String> legend;//线的名称
|
|
private List<String> categories;//X轴数据
|
|
private List<SeriesItem> series;//Y轴数据集合
|
|
}
|