|
@@ -11,7 +11,7 @@ import lombok.Setter;
|
|
|
public enum LexiconRSTypeEnum implements KeyedNamed {
|
|
|
IS_A(1,"是"),
|
|
|
EQUAL_TO(2,"同义于"),
|
|
|
- BELONG_TO(3,"属于"),
|
|
|
+ BELONG_TO(3,"包含"),
|
|
|
ASSOCIATED_WITH(4,"与相关"),
|
|
|
CAUSE(5,"引起"),
|
|
|
LOCATED_AT(6,"位于"),
|
|
@@ -26,7 +26,7 @@ public enum LexiconRSTypeEnum implements KeyedNamed {
|
|
|
SPEC(15,"规格"),
|
|
|
HAS(16,"有"),
|
|
|
ORDER_BY(17,"包含排列于"),
|
|
|
- SUBITEM(18,"属于子项");
|
|
|
+ SUBITEM(18,"包含子项");
|
|
|
|
|
|
@Setter
|
|
|
private Integer key;
|
|
@@ -63,4 +63,3 @@ public enum LexiconRSTypeEnum implements KeyedNamed {
|
|
|
return name;
|
|
|
}
|
|
|
}
|
|
|
-
|