(improvement)(headless) Modify view demo data (#703)

Co-authored-by: jolunoluo
This commit is contained in:
LXW
2024-01-30 21:34:03 +08:00
committed by GitHub
parent df975b231d
commit 7f15bacca4
3 changed files with 14 additions and 10 deletions

View File

@@ -20,8 +20,9 @@ public class ViewModelConfig {
private List<Long> dimensions = Lists.newArrayList();
public ViewModelConfig(Long id, boolean includesAll) {
public ViewModelConfig(Long id, List<Long> dimensions, List<Long> metrics) {
this.id = id;
this.includesAll = includesAll;
this.metrics = metrics;
this.dimensions = dimensions;
}
}