Package-level declarations

Contains Framework Database orm annotations.

Types

Link copied to clipboard
@Target(allowedTargets = [AnnotationTarget.FIELD])
annotation class Column(val name: String = "")

Annotation to specify the name of a database column.

Link copied to clipboard
@Target(allowedTargets = [AnnotationTarget.FIELD])
annotation class Id(val type: GeneratedBy)

Annotation to mark a column as an identifier in a database table.

Link copied to clipboard
@Target(allowedTargets = [AnnotationTarget.FIELD])
annotation class JoinColumn(val name: String = "", val type: Relation)

Annotation to specify the join column in a database entity.

Link copied to clipboard
@Target(allowedTargets = [AnnotationTarget.CLASS])
annotation class Table(val name: String = "")

Annotation to specify the name of a database table.