git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@30983 d1611594-4594-4d17-8e1d-87c2c4800839
parent
19dede32d0
commit
17d709cb00
|
@ -46,10 +46,10 @@ public class Conexion implements Serializable {
|
||||||
private Integer destinoId;
|
private Integer destinoId;
|
||||||
@Column(name = "CONEXIONCTRL_ID")
|
@Column(name = "CONEXIONCTRL_ID")
|
||||||
private Long conexionctrlId;
|
private Long conexionctrlId;
|
||||||
@JoinColumn(name = "ORIGEN_ID", referencedColumnName = "PARADA_ID",insertable=false,updatable=false)
|
@JoinColumn(name = "ORIGEN_ID", referencedColumnName = "PARADA_ID", insertable = false, updatable = false)
|
||||||
@ManyToOne
|
@ManyToOne
|
||||||
private Parada origen;
|
private Parada origen;
|
||||||
@JoinColumn(name = "DESTINO_ID", referencedColumnName = "PARADA_ID",insertable=false,updatable=false)
|
@JoinColumn(name = "DESTINO_ID", referencedColumnName = "PARADA_ID", insertable = false, updatable = false)
|
||||||
@ManyToOne
|
@ManyToOne
|
||||||
private Parada destino;
|
private Parada destino;
|
||||||
|
|
||||||
|
@ -108,7 +108,6 @@ public class Conexion implements Serializable {
|
||||||
this.usuarioId = usuarioId;
|
this.usuarioId = usuarioId;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int hashCode() {
|
public int hashCode() {
|
||||||
int hash = 0;
|
int hash = 0;
|
||||||
|
@ -157,5 +156,4 @@ public class Conexion implements Serializable {
|
||||||
public void setDestinoId(Integer destinoId) {
|
public void setDestinoId(Integer destinoId) {
|
||||||
this.destinoId = destinoId;
|
this.destinoId = destinoId;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -27,5 +27,4 @@ public class ConexionServiceImpl implements ConexionService {
|
||||||
public List<ConexionVO> buscarConexiones(Integer origenId, Integer destinoId) {
|
public List<ConexionVO> buscarConexiones(Integer origenId, Integer destinoId) {
|
||||||
return conexionDAO.buscarConexiones(origenId, destinoId);
|
return conexionDAO.buscarConexiones(origenId, destinoId);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue