Add OpenXava

This commit is contained in:
2024-03-24 23:00:47 +01:00
parent 2002d29d0b
commit 8dc83d7511
856 changed files with 37005 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
@Entity
public class Événement {
@OneToMany (mappedBy= "événement")
public Collection<PariAvancé> pariavancés;
@OneToMany (mappedBy= "événement")
public Collection<PariSimple> parisimples;
@OneToMany (mappedBy= "événement")
public Collection<Participant> participants;
@OneToOne
public Sport sport
@Column
private Integer event_ID ;
@Column
private String evennt_Nom ;
@Column
private Date Date ;
@Column
private String Sport ;
@Column
private Integer Numéro_période ;
@Column
private String Score ;
@Column
private Integer getID() {}
@Column
private String getNom() {}
@Column
private Date getDate() {}
}