mirror of https://github.com/jeecgboot/jeecg-boot
新增图表API接口
parent
af3afc7263
commit
b59fc67696
|
@ -107,7 +107,11 @@ public class MockController {
|
||||||
public String getCabinetCountInfo() {
|
public String getCabinetCountInfo() {
|
||||||
return readJson("classpath:org/jeecg/modules/demo/mock/json/getCntrNoCountInfo.json");
|
return readJson("classpath:org/jeecg/modules/demo/mock/json/getCntrNoCountInfo.json");
|
||||||
}
|
}
|
||||||
|
@GetMapping(value = "/report/getTubiao")
|
||||||
|
public String getTubiao() {
|
||||||
|
return readJson("classpath:org/jeecg/modules/demo/mock/json/getTubiao.json");
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 实时磁盘监控
|
* 实时磁盘监控
|
||||||
* @param request
|
* @param request
|
||||||
|
|
|
@ -0,0 +1,10 @@
|
||||||
|
{"data":
|
||||||
|
[
|
||||||
|
{"day": "星期一", "step": 1234, "assess": "良"},
|
||||||
|
{"day": "星期二", "step": 1884, "assess": "优"},
|
||||||
|
{"day": "星期三", "step": 1671, "assess": "良+"},
|
||||||
|
{"day": "星期四", "step": 2197, "assess": "优+"},
|
||||||
|
{"day": "星期五", "step": 1342, "assess": "中"},
|
||||||
|
{"day": "星期六", "step": 545, "assess": "差"},
|
||||||
|
{"day": "星期日", "step": 244, "assess": "极差"}
|
||||||
|
]}
|
Loading…
Reference in New Issue