数据中心在线率统计图表接口迁移

This commit is contained in:
zhuxinyu
2023-04-06 19:33:21 +08:00
parent 6f8ecd9e86
commit 836565c1cf
6 changed files with 113 additions and 14 deletions

View File

@@ -0,0 +1,29 @@
package com.njcn.device.pq.pojo.vo;
import lombok.Data;
import java.io.Serializable;
import java.util.List;
@Data
public class OnlineRateCensusVO implements Serializable {
private static final long serialVersionUID = 1L;
/**
* x轴 统计类型
*/
private List<String> type;
/**
* y轴 数据
*/
private List<Double> single;
/**
* y轴 同比环比数据
*/
private List<Double> ratio;
}