DecoratedRelationDO
/**
* @brief DO class: A decorated relation.
*/
Primary key: decorator_oid: int
schema DecoratedRelationDO {
@primary decorator_oid: int,
decorated_element_oid: int
}
DecoratedRelationDO::getDecoratedElementOid
/**
* @brief gets the decorated element oid of this element.
* @return int
*/
- Parameter
self
:DecoratedRelationDO
- Return
int
pub fn getDecoratedElementOid(self: DecoratedRelationDO) -> int;
DecoratedRelationDO::__all__
Data constraint method.
- Parameter
db
:PythonDB
- Return
*DecoratedRelationDO
pub fn __all__(db: PythonDB) -> *DecoratedRelationDO;