diff options
| author | gaohao <[email protected]> | 2022-11-11 16:34:11 +0800 |
|---|---|---|
| committer | gaohao <[email protected]> | 2022-11-11 16:34:11 +0800 |
| commit | 343b51f3cdde4bcb04f33f4dd2f261cb26a3f62d (patch) | |
| tree | b388c88a5f15d6b5471907ea6e95de221c70fa36 | |
| parent | 6e87a12a09c770e3327c37131a6cde12ba9b9fb0 (diff) | |
fix: NEZ-2375 explore snapshot 接口返回增加 limit 参数rel-22.10.11
| -rw-r--r-- | nz-admin/src/main/java/com/nis/modules/panel/service/impl/VisualServiceImpl.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/nz-admin/src/main/java/com/nis/modules/panel/service/impl/VisualServiceImpl.java b/nz-admin/src/main/java/com/nis/modules/panel/service/impl/VisualServiceImpl.java index 19b60016..01cd12ba 100644 --- a/nz-admin/src/main/java/com/nis/modules/panel/service/impl/VisualServiceImpl.java +++ b/nz-admin/src/main/java/com/nis/modules/panel/service/impl/VisualServiceImpl.java @@ -92,6 +92,7 @@ public class VisualServiceImpl implements VisualService { resultMap.put("type", type); resultMap.put("unit", unit); resultMap.put("direction", direction); + resultMap.put("limit", limit); resultMap.put("data", dataList); String snapshotTemplate = this.replaceSnapshotTemplate(resultMap); |
