HasLocationDO

/**
* @brief DO class: A has location.
*/

Primary key: oid: int

schema HasLocationDO {
  @primary oid: int,
  location_obj: int,
  location_id: int
}

HasLocationDO::getLocationId

/**
* @brief gets the location id of this element.
* @return int
*/
pub fn getLocationId(self: HasLocationDO) -> int;

HasLocationDO::__all__

Data constraint method.

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

HasLocationDO::getLocationObj

/**
* @brief gets the location obj of this element.
* @return int
*/
pub fn getLocationObj(self: HasLocationDO) -> int;