ConstValueDO

/**
* @brief DO class: A const value.
*/

Primary key: oid: int

schema ConstValueDO {
  @primary oid: int,
  expr: int,
  value: string,
  exact: string
}

ConstValueDO::getExact

/**
* @brief gets the exact of this element.
* @return string
*/
pub fn getExact(self: ConstValueDO) -> string;

ConstValueDO::getValue

/**
* @brief gets the value of this element.
* @return string
*/
pub fn getValue(self: ConstValueDO) -> string;

ConstValueDO::__all__

Data constraint method.

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

ConstValueDO::getExpr

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