package net.gepafin.tendermanagement.entities; import jakarta.persistence.*; import lombok.Data; import org.hibernate.annotations.Where; @Entity @Data @Table(name = "APPLICATION_EVALUATION_FORM") @Where(clause = "is_deleted = false") public class ApplicationEvaluationFormEntity extends BaseEntity{ private Long applicationId; @ManyToOne @JoinColumn(name = "EVALUATION_ID") private ApplicationEvaluationEntity applicationEvaluation; @ManyToOne @JoinColumn(name = "EVALUATION_FORM_ID") private EvaluationFormEntity evaluationForm; }