TypeObjectDO
/**
* @brief DO class: A type object.
*/
Primary key: oid: int
schema TypeObjectDO {
@primary oid: int,
object: int
}
TypeObjectDO::getObject
/**
* @brief gets the object of this element.
* @return int
*/
- Parameter
self
:TypeObjectDO
- Return
int
pub fn getObject(self: TypeObjectDO) -> int;
TypeObjectDO::__all__
Data constraint method.
- Parameter
db
:GoDB
- Return
*TypeObjectDO
pub fn __all__(db: GoDB) -> *TypeObjectDO;