CarDriverRelation.java
542 Bytes
package com.trash.carInfo.domain;
public class CarDriverRelation {
private Long id;
private Long carId;
private Long driverId;
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public Long getCarId() {
return carId;
}
public void setCarId(Long carId) {
this.carId = carId;
}
public Long getDriverId() {
return driverId;
}
public void setDriverId(Long driverId) {
this.driverId = driverId;
}
}