fixed bug #6497
git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@51457 d1611594-4594-4d17-8e1d-87c2c4800839master
parent
1888337aa8
commit
9f912ac7b8
|
@ -49,6 +49,16 @@ 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;
|
||||||
|
@Column(name = "CORRIDA_ID")
|
||||||
|
private Long corridaId;
|
||||||
|
|
||||||
|
public Long getCorridaId() {
|
||||||
|
return corridaId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setCorridaId(Long corridaId) {
|
||||||
|
this.corridaId = corridaId;
|
||||||
|
}
|
||||||
|
|
||||||
public Conexion() {
|
public Conexion() {
|
||||||
}
|
}
|
||||||
|
|
|
@ -41,6 +41,16 @@ public class ConexionCtrl implements Serializable {
|
||||||
private Integer origenId;
|
private Integer origenId;
|
||||||
@Column(name = "DESTINO_ID")
|
@Column(name = "DESTINO_ID")
|
||||||
private Integer destinoId;
|
private Integer destinoId;
|
||||||
|
@Column(name = "INDFIXA")
|
||||||
|
private Integer indfixa;
|
||||||
|
|
||||||
|
public Integer getIndfixa() {
|
||||||
|
return indfixa;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setIndfixa(Integer indfixa) {
|
||||||
|
this.indfixa = indfixa;
|
||||||
|
}
|
||||||
|
|
||||||
public ConexionCtrl() {
|
public ConexionCtrl() {
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue