fix: formatting again
This commit is contained in:
		| @@ -14,10 +14,13 @@ public class RendezVous { | |||||||
|  |  | ||||||
|     @OneToMany(mappedBy = "rendezVousEntrepreneurs", fetch = FetchType.LAZY, orphanRemoval = true) |     @OneToMany(mappedBy = "rendezVousEntrepreneurs", fetch = FetchType.LAZY, orphanRemoval = true) | ||||||
|     private final List<Entrepreneurs> ListEntrepreneurs = new ArrayList<>(); |     private final List<Entrepreneurs> ListEntrepreneurs = new ArrayList<>(); | ||||||
|  |  | ||||||
|     @OneToMany(mappedBy = "rendezVousAdministrateurs", fetch = FetchType.LAZY, orphanRemoval = true) |     @OneToMany(mappedBy = "rendezVousAdministrateurs", fetch = FetchType.LAZY, orphanRemoval = true) | ||||||
|     private final List<Administrateurs> ListAdministrateurs = new ArrayList<>(); |     private final List<Administrateurs> ListAdministrateurs = new ArrayList<>(); | ||||||
|  |  | ||||||
|     @OneToMany(mappedBy = "rendezVousComptesRendus", fetch = FetchType.LAZY, orphanRemoval = true) |     @OneToMany(mappedBy = "rendezVousComptesRendus", fetch = FetchType.LAZY, orphanRemoval = true) | ||||||
|     private final List<ComptesRendus> ListComptesRendus = new ArrayList<>(); |     private final List<ComptesRendus> ListComptesRendus = new ArrayList<>(); | ||||||
|  |  | ||||||
|     @ManyToMany( |     @ManyToMany( | ||||||
|             fetch = FetchType.LAZY, |             fetch = FetchType.LAZY, | ||||||
|             cascade = {CascadeType.ALL}) |             cascade = {CascadeType.ALL}) | ||||||
| @@ -26,15 +29,19 @@ public class RendezVous { | |||||||
|             joinColumns = @JoinColumn(name = "id_rdv"), |             joinColumns = @JoinColumn(name = "id_rdv"), | ||||||
|             inverseJoinColumns = @JoinColumn(name = "id_section")) |             inverseJoinColumns = @JoinColumn(name = "id_section")) | ||||||
|     List<Sections> ListSections = new ArrayList<>(); |     List<Sections> ListSections = new ArrayList<>(); | ||||||
|  |  | ||||||
|     @Id |     @Id | ||||||
|     @NotNull |     @NotNull | ||||||
|     @GeneratedValue(strategy = GenerationType.IDENTITY) |     @GeneratedValue(strategy = GenerationType.IDENTITY) | ||||||
|     private Long id_rdv; |     private Long id_rdv; | ||||||
|  |  | ||||||
|     private LocalDate date_rdv; |     private LocalDate date_rdv; | ||||||
|     private LocalDateTime heure_rdv; |     private LocalDateTime heure_rdv; | ||||||
|     private LocalDateTime duree_rdv; |     private LocalDateTime duree_rdv; | ||||||
|  |  | ||||||
|     @Column(length = 255) |     @Column(length = 255) | ||||||
|     private String lieu_rdv; |     private String lieu_rdv; | ||||||
|  |  | ||||||
|     private String sujet_rdv; |     private String sujet_rdv; | ||||||
|  |  | ||||||
|     public RendezVous() {} |     public RendezVous() {} | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user