DiagnosticForDO

/**
* @brief DO class: A diagnostic for.
*/

Primary key: diagnostic: int

schema DiagnosticForDO {
  @primary diagnostic: int,
  compilation: int,
  file_number: int,
  file_number_diagnostic_number: int
}

DiagnosticForDO::getFileNumberDiagnosticNumber

/**
* @brief gets the file number diagnostic number of this element.
* @return int
*/
pub fn getFileNumberDiagnosticNumber(self: DiagnosticForDO) -> int;

DiagnosticForDO::getFileNumber

/**
* @brief gets the file number of this element.
* @return int
*/
pub fn getFileNumber(self: DiagnosticForDO) -> int;

DiagnosticForDO::__all__

Data constraint method.

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

DiagnosticForDO::getCompilation

/**
* @brief gets the compilation of this element.
* @return int
*/
pub fn getCompilation(self: DiagnosticForDO) -> int;