FieldsDO

/**
* @brief DO class: A fields.
*/

Primary key: oid: int

schema FieldsDO {
  @primary oid: int,
  parent_id: int,
  idx: int,
  kind: int
}

FieldsDO::getKind

/**
* @brief gets the kind of this element.
* @return int
*/
pub fn getKind(self: FieldsDO) -> int;

FieldsDO::getIdx

/**
* @brief gets the idx of this element.
* @return int
*/
pub fn getIdx(self: FieldsDO) -> int;

FieldsDO::__all__

Data constraint method.

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

FieldsDO::getParentId

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