backend-api #6
@@ -24,8 +24,10 @@ public class Appointment {
 | 
			
		||||
            joinColumns = @JoinColumn(name = "idAppointment"),
 | 
			
		||||
            inverseJoinColumns = @JoinColumn(name = "idSectionCell"))
 | 
			
		||||
    List<SectionCell> listSectionCell = new ArrayList<>();
 | 
			
		||||
 | 
			
		||||
    @OneToOne(mappedBy = "appointmentReport", fetch = FetchType.LAZY, orphanRemoval = true)
 | 
			
		||||
    private Report report;
 | 
			
		||||
 | 
			
		||||
    @Id
 | 
			
		||||
    @GeneratedValue(strategy = GenerationType.IDENTITY)
 | 
			
		||||
    private Long idAppointment;
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user