ExpressionListExpressionRelationDO
/**
* @brief DO class: Reference relation between expression list to its contained expression.
*/
Primary key: expression_hash_id: int
schema ExpressionListExpressionRelationDO {
expression_list_hash_id: int,
@primary expression_hash_id: int,
position: int
}
ExpressionListExpressionRelationDO::getPosition
- Parameter
self
:ExpressionListExpressionRelationDO
- Return
int
pub fn getPosition(self: ExpressionListExpressionRelationDO) -> int;
ExpressionListExpressionRelationDO::getExpressionListHashId
/**
* @brief gets the expression list hash id of this element.
* @return int
*/
- Parameter
self
:ExpressionListExpressionRelationDO
- Return
int
pub fn getExpressionListHashId(self: ExpressionListExpressionRelationDO) -> int;
ExpressionListExpressionRelationDO::__all__
Data constraint method.
- Parameter
db
:JavaDB
- Return
*ExpressionListExpressionRelationDO
pub fn __all__(db: JavaDB) -> *ExpressionListExpressionRelationDO;
ExpressionListExpressionRelationDO::getExpressionHashId
/**
* @brief gets the expression hash id of this element.
* @return int
*/
- Parameter
self
:ExpressionListExpressionRelationDO
- Return
int
pub fn getExpressionHashId(self: ExpressionListExpressionRelationDO) -> int;