ClassHierarchyDO
/**
* @brief DO class: class inheritance
*/
Primary key: child_oid: int
schema ClassHierarchyDO {
@primary child_oid: int,
parent_oid: int
}
ClassHierarchyDO::getParentOid
/**
* @brief gets the parent oid of this element.
* @return int
*/
- Parameter
self
:ClassHierarchyDO
- Return
int
pub fn getParentOid(self: ClassHierarchyDO) -> int;
ClassHierarchyDO::__all__
Data constraint method.
- Parameter
db
:CfamilyDB
- Return
*ClassHierarchyDO
pub fn __all__(db: CfamilyDB) -> *ClassHierarchyDO;