Subject: [PATCH] Inheritance bugs workaround --- Index: addon-commons/src/main/kotlin/fr/altereo/addon/commons/entity/DummyBaseEntitySoftDelete.kt IDEA additional info: Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP <+>UTF-8 =================================================================== diff --git a/addon-commons/src/main/kotlin/fr/altereo/addon/commons/entity/DummyBaseEntitySoftDelete.kt b/addon-commons/src/main/kotlin/fr/altereo/addon/commons/entity/DummyBaseEntitySoftDelete.kt new file mode 100644 --- /dev/null (date 1683248925580) +++ b/addon-commons/src/main/kotlin/fr/altereo/addon/commons/entity/DummyBaseEntitySoftDelete.kt (date 1683248925580) @@ -0,0 +1,11 @@ +package fr.altereo.addon.commons.entity + +import io.jmix.core.metamodel.annotation.JmixEntity +import javax.persistence.Entity +import javax.persistence.Table + +@JmixEntity +@Table(name = "COM_DUMMY_BASE_ENTITY_SOFT_DELETE") +@Entity(name = "com_DummyBaseEntitySoftDelete") +open class DummyBaseEntitySoftDelete : BaseEntitySoftDelete() { +} \ No newline at end of file Index: addon-commons/src/main/kotlin/fr/altereo/addon/commons/entity/DummyBaseComment.kt IDEA additional info: Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP <+>UTF-8 =================================================================== diff --git a/addon-commons/src/main/kotlin/fr/altereo/addon/commons/entity/DummyBaseComment.kt b/addon-commons/src/main/kotlin/fr/altereo/addon/commons/entity/DummyBaseComment.kt new file mode 100644 --- /dev/null (date 1683248925576) +++ b/addon-commons/src/main/kotlin/fr/altereo/addon/commons/entity/DummyBaseComment.kt (date 1683248925576) @@ -0,0 +1,11 @@ +package fr.altereo.addon.commons.entity + +import io.jmix.core.metamodel.annotation.JmixEntity +import javax.persistence.Entity +import javax.persistence.Table + +@JmixEntity +@Table(name = "COM_DUMMY_BASE_COMMENT") +@Entity(name = "com_DummyBaseComment") +open class DummyBaseComment: BaseComment() { +} \ No newline at end of file