Change model (2.1.1.1)

This commit is contained in:
Tobias Eidelpes 2021-04-27 22:23:23 +02:00
parent 852527755c
commit 3ba52daa6f

View File

@ -19,10 +19,10 @@ public class Match implements IMatch {
@OneToOne(targetEntity = Trip.class)
private ITrip trip;
@OneToOne(targetEntity = Vehicle.class)
@ManyToOne(targetEntity = Vehicle.class)
private IVehicle vehicle;
@OneToOne(targetEntity = Driver.class)
@ManyToOne(targetEntity = Driver.class)
private IDriver driver;
@Override