AnnotatedRelationDO
/**
* @brief DO class: Describe an annotated relation.
*/
Primary key: annotation_hash_id: int
schema AnnotatedRelationDO {
@primary annotation_hash_id: int,
annotated_item_hash_id: int
}
AnnotatedRelationDO::getAnnotatedItemHashId
/**
* @brief gets the annotated item hash id of this element.
* @return int
*/
- Parameter
self
:AnnotatedRelationDO
- Return
int
pub fn getAnnotatedItemHashId(self: AnnotatedRelationDO) -> int;
AnnotatedRelationDO::__all__
Data constraint method.
- Parameter
db
:JavaDB
- Return
*AnnotatedRelationDO
pub fn __all__(db: JavaDB) -> *AnnotatedRelationDO;