Done ticket
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
package net.gepafin.tendermanagement.entities;
|
||||
|
||||
import jakarta.persistence.*;
|
||||
import lombok.*;
|
||||
|
||||
import java.time.LocalDateTime;
|
||||
|
||||
@Entity
|
||||
@Table(name = "APPLICATION_FORM")
|
||||
@Data
|
||||
@NoArgsConstructor
|
||||
@AllArgsConstructor
|
||||
@Builder
|
||||
public class ApplicationFormEntity extends BaseEntity {
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "APPLICATION_ID", nullable = false)
|
||||
private ApplicationEntity application;
|
||||
|
||||
@ManyToOne
|
||||
@JoinColumn(name = "FORM_ID", nullable = false)
|
||||
private FormEntity form;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user