Done ticket GEPAFINBE-20
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
package net.gepafin.tendermanagement.entities;
|
||||
|
||||
import jakarta.persistence.*;
|
||||
import lombok.*;
|
||||
|
||||
import java.time.LocalDateTime;
|
||||
|
||||
@Entity
|
||||
@Table(name = "FLOW_EDGES")
|
||||
@Data
|
||||
@NoArgsConstructor
|
||||
@AllArgsConstructor
|
||||
@Builder
|
||||
public class FlowEdgesEntity extends BaseEntity {
|
||||
|
||||
@Column(name = "SOURCE_ID")
|
||||
private Long sourceId;
|
||||
|
||||
@Column(name = "TARGET_ID")
|
||||
private Long targetId;
|
||||
|
||||
@Column(name = "TYPE", length = 255)
|
||||
private String type;
|
||||
|
||||
@Column(name="CALL_ID")
|
||||
private Long callId;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user