ContainerParentDO

/**
* @brief DO class: Describe a file belonged to a certain folder.
*/

Primary key: child_hash_id: int

schema ContainerParentDO {
  @primary child_hash_id: int,
  parent_hash_id: int
}

ContainerParentDO::getParentHashId

/**
* @brief gets the parent hash id of this element.
* @return int
*/
pub fn getParentHashId(self: ContainerParentDO) -> int;

ContainerParentDO::__all__

Data constraint method.

pub fn __all__(db: JavaDB) -> *ContainerParentDO;