BaseTypeDO

/**
* @brief DO class: A base type.
*/

Primary key: oid: int

schema BaseTypeDO {
  @primary oid: int,
  ptr: int,
  tp: int
}

BaseTypeDO::getTp

/**
* @brief gets the tp of this element.
* @return int
*/
pub fn getTp(self: BaseTypeDO) -> int;

BaseTypeDO::__all__

Data constraint method.

pub fn __all__(db: GoDB) -> *BaseTypeDO;

BaseTypeDO::getPtr

/**
* @brief gets the ptr of this element.
* @return int
*/
pub fn getPtr(self: BaseTypeDO) -> int;