create get e set entity child mtbSsfam nella mtbSfam
Some checks failed
IntegryManagementSystem_Multi/pipeline/head There was a failure building this commit

This commit is contained in:
2025-11-14 13:11:00 +01:00
parent 91f28a8c82
commit d78597cba4
2 changed files with 14 additions and 4 deletions

View File

@@ -84,6 +84,16 @@ public class MtbSfam extends EntityBase implements EquatableEntityInterface<MtbS
this.descrizione = descrizione;
}
public List<MtbSsfam> getMtbSsfam() {
return mtbSsfam;
}
public MtbSfam setMtbSsfam(List<MtbSsfam> mtbSsfam) {
this.mtbSsfam = mtbSsfam;
return this;
}
@Override
public boolean equalsKey(MtbSfam other) {
if (this == other)

View File

@@ -6,15 +6,16 @@ import it.integry.ems_model.annotation.PK;
import it.integry.ems_model.annotation.SqlField;
import it.integry.ems_model.annotation.Table;
import it.integry.ems_model.base.EntityBase;
import it.integry.ems_model.base.EquatableEntityInterface;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;
import org.kie.api.definition.type.PropertyReactive;
@PropertyReactive()
@Table(value = MtbSsfam.ENTITY)
@JsonTypeName(value = MtbSsfam.ENTITY)
public class MtbSsfam extends EntityBase {
@Table(MtbSsfam.ENTITY)
@JsonTypeName( MtbSsfam.ENTITY)
public abstract class MtbSsfam extends EntityBase implements EquatableEntityInterface<MtbSsfam> {
public final static String ENTITY = "mtb_ssfam";
@@ -96,5 +97,4 @@ public class MtbSsfam extends EntityBase {
return this;
}
}