Done ticket GEPAFINBE-87
This commit is contained in:
@@ -2,12 +2,14 @@ package net.gepafin.tendermanagement.entities;
|
||||
|
||||
import jakarta.persistence.*;
|
||||
import lombok.Data;
|
||||
import org.hibernate.annotations.Where;
|
||||
|
||||
import java.time.LocalDateTime;
|
||||
|
||||
@Data
|
||||
@Entity
|
||||
@Table(name = "application_evaluation")
|
||||
@Where(clause = "is_deleted = false")
|
||||
public class ApplicationEvaluationEntity extends BaseEntity{
|
||||
|
||||
@Column(name = "application_Id")
|
||||
@@ -37,9 +39,6 @@ public class ApplicationEvaluationEntity extends BaseEntity{
|
||||
@Column(name = "MOTIVATION")
|
||||
private String motivation;
|
||||
|
||||
@Column(name="IS_DELETED")
|
||||
private Boolean isDeleted;
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "assigned_applications_id", nullable = true)
|
||||
private AssignedApplicationsEntity assignedApplicationsEntity;
|
||||
|
||||
Reference in New Issue
Block a user