Done ticket GEPAFINBE-87
This commit is contained in:
@@ -2,16 +2,15 @@ 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;
|
||||
|
||||
@Column(name="IS_DELETED")
|
||||
private Boolean isDeleted;
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "EVALUATION_ID")
|
||||
private ApplicationEvaluationEntity applicationEvaluation;
|
||||
|
||||
Reference in New Issue
Block a user