Done ticket GEPAFINBE-38
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
package net.gepafin.tendermanagement.entities;
|
||||
|
||||
import jakarta.persistence.*;
|
||||
import lombok.Data;
|
||||
|
||||
import java.time.LocalTime;
|
||||
|
||||
@Entity
|
||||
@Table(name = "PROTOCOL")
|
||||
@Data
|
||||
public class ProtocolEntity extends BaseEntity {
|
||||
|
||||
@Column(name = "PROTOCOL_NUMBER", nullable = false)
|
||||
private Long protocolNumber;
|
||||
|
||||
@Column(name = "YEAR", nullable = false)
|
||||
private Integer year;
|
||||
|
||||
@Column(name="CALL_ID")
|
||||
private Long call;
|
||||
|
||||
@Column(name = "TIME", nullable = false)
|
||||
private LocalTime time;
|
||||
|
||||
@Column(name="APPLICATION_ID")
|
||||
private Long applicationId;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user