Done ticket GEPAFINBE-219
This commit is contained in:
@@ -25,4 +25,6 @@ public class ApplicationSignedDocumentEntity extends BaseEntity {
|
||||
@Column(name="STATUS")
|
||||
private String status;
|
||||
|
||||
@Column(name="FILE_HASH")
|
||||
private String fileHash;
|
||||
}
|
||||
|
||||
@@ -51,9 +51,6 @@ public class CompanyEntity extends BaseEntity{
|
||||
@JoinColumn(name = "HUB_ID")
|
||||
private HubEntity hub;
|
||||
|
||||
// @Column(name = "JSON")
|
||||
// private String json;
|
||||
|
||||
@Column(name = "NDG")
|
||||
private String ndg;
|
||||
|
||||
@@ -62,4 +59,7 @@ public class CompanyEntity extends BaseEntity{
|
||||
|
||||
@Column(name = "JSON")
|
||||
private String json;
|
||||
|
||||
@Column(name = "PEC")
|
||||
private String pec;
|
||||
}
|
||||
|
||||
@@ -4,6 +4,7 @@ import jakarta.persistence.*;
|
||||
import lombok.Data;
|
||||
import net.gepafin.tendermanagement.config.LocalTimeAttributeConverter;
|
||||
|
||||
import java.time.LocalDateTime;
|
||||
import java.time.LocalTime;
|
||||
|
||||
@Entity
|
||||
@@ -33,4 +34,14 @@ public class ProtocolEntity extends BaseEntity {
|
||||
@Column(name = "type")
|
||||
private String type;
|
||||
|
||||
@Column(name = "external_protocol_year")
|
||||
private Integer externalProtocolYear;
|
||||
|
||||
@Column(name = "external_protocol_date")
|
||||
private LocalDateTime externalProtocolDate;
|
||||
|
||||
@Column(name = "external_protocol_number")
|
||||
private String externalProtocolNumber;
|
||||
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user