ArrayLengthDO

/**
* @brief DO class: An array length.
*/

Primary key: oid: int

schema ArrayLengthDO {
  @primary oid: int,
  tp: int,
  file_id: int,
  len: int
}

ArrayLengthDO::getLen

/**
* @brief gets the len of this element.
* @return int
*/
pub fn getLen(self: ArrayLengthDO) -> int;

ArrayLengthDO::getFileId

/**
* @brief gets the file id of this element.
* @return int
*/
pub fn getFileId(self: ArrayLengthDO) -> int;

ArrayLengthDO::__all__

Data constraint method.

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

ArrayLengthDO::getTp

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