TypeOfDO

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

Primary key: oid: int

schema TypeOfDO {
  @primary oid: int,
  expr: int,
  tp: int
}

TypeOfDO::getTp

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

TypeOfDO::__all__

Data constraint method.

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

TypeOfDO::getExpr

/**
* @brief gets the expr of this element.
* @return int
*/
pub fn getExpr(self: TypeOfDO) -> int;