CompilationArgsDO

/**
* @brief DO class: A compilation args.
*/

Primary key: oid: int

schema CompilationArgsDO {
  @primary oid: int,
  num: int,
  arg: string
}

CompilationArgsDO::getArg

/**
* @brief gets the arg of this element.
* @return string
*/
pub fn getArg(self: CompilationArgsDO) -> string;

CompilationArgsDO::__all__

Data constraint method.

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

CompilationArgsDO::getNum

/**
* @brief gets the num of this element.
* @return int
*/
pub fn getNum(self: CompilationArgsDO) -> int;