Inheritance
annotationin packageklyn.data.mapping
public annotation Inheritance(
strategy as InheritanceType = InheritanceType.SINGLE_TABLE
)
Inheritance

Selects the mapping strategy for an entity inheritance hierarchy.

Example
@Entity
@Inheritance(strategy=InheritanceType.SINGLE_TABLE)
public abstract class Payment:
pass