(improvement)(knowledge) ModelSchema add tag type element (#419)

Co-authored-by: jolunoluo
This commit is contained in:
LXW
2023-11-24 17:52:30 +08:00
committed by GitHub
parent aa433baa06
commit d79e30cd7a
3 changed files with 22 additions and 4 deletions

View File

@@ -13,6 +13,8 @@ public class ModelSchema {
private Set<SchemaElement> metrics = new HashSet<>();
private Set<SchemaElement> dimensions = new HashSet<>();
private Set<SchemaElement> dimensionValues = new HashSet<>();
private Set<SchemaElement> tags = new HashSet<>();
@Deprecated
private SchemaElement entity = new SchemaElement();
public SchemaElement getElement(SchemaElementType elementType, long elementID) {

View File

@@ -7,5 +7,6 @@ public enum SchemaElementType {
VALUE,
ENTITY,
ID,
DATE
DATE,
TAG
}