DocCommentDO
/**
* @brief DO class: A doc comment.
*/
Primary key: oid: int
schema DocCommentDO {
@primary oid: int,
associate_obj: int,
comment_group_id: int
}
DocCommentDO::getCommentGroupId
/**
* @brief gets the comment group id of this element.
* @return int
*/
- Parameter
self
:DocCommentDO
- Return
int
pub fn getCommentGroupId(self: DocCommentDO) -> int;
DocCommentDO::__all__
Data constraint method.
- Parameter
db
:GoDB
- Return
*DocCommentDO
pub fn __all__(db: GoDB) -> *DocCommentDO;
DocCommentDO::getAssociateObj
/**
* @brief gets the associate obj of this element.
* @return int
*/
- Parameter
self
:DocCommentDO
- Return
int
pub fn getAssociateObj(self: DocCommentDO) -> int;