feat: continued to implement SharedApiService (if linter fails i don't understand)
Some checks failed
Format / formatting (push) Failing after 6s
CI / build (push) Successful in 11s

This commit is contained in:
Théo Le Lez
2025-02-26 18:33:09 +01:00
parent f9de5ed6bf
commit 1d970ce5f5
5 changed files with 82 additions and 7 deletions

View File

@ -17,7 +17,7 @@ public class Report {
private String reportContent;
@ManyToOne(fetch = FetchType.LAZY)
@OneToOne(fetch = FetchType.LAZY)
@JoinColumn(name = "idAppointment")
private Appointment appointmentReport;
@ -28,6 +28,10 @@ public class Report {
this.reportContent = reportContent;
}
public Long getIdReport() {
return idReport;
}
public String getReportContent() {
return reportContent;
}