git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@20224 d1611594-4594-4d17-8e1d-87c2c4800839
parent
fd218ba97d
commit
05281bf3c4
|
@ -38,6 +38,8 @@ public class Estado implements Serializable {
|
||||||
private Integer estadoId;
|
private Integer estadoId;
|
||||||
@Column(name = "NOMBESTADO")
|
@Column(name = "NOMBESTADO")
|
||||||
private String nombestado;
|
private String nombestado;
|
||||||
|
@Column(name = "CVEBESTADO")
|
||||||
|
private String cveestado;
|
||||||
@Column(name = "ACTIVO")
|
@Column(name = "ACTIVO")
|
||||||
private Boolean activo;
|
private Boolean activo;
|
||||||
@Column(name = "FECMODIF")
|
@Column(name = "FECMODIF")
|
||||||
|
@ -124,6 +126,14 @@ public class Estado implements Serializable {
|
||||||
this.equivalenciaId = equivalenciaId;
|
this.equivalenciaId = equivalenciaId;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public String getCveestado() {
|
||||||
|
return cveestado;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setCveestado(String cveestado) {
|
||||||
|
this.cveestado = cveestado;
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int hashCode() {
|
public int hashCode() {
|
||||||
int hash = 0;
|
int hash = 0;
|
||||||
|
|
|
@ -74,6 +74,10 @@ public class Parada implements Serializable {
|
||||||
private List<Tramo> tramoOrigemList;
|
private List<Tramo> tramoOrigemList;
|
||||||
@OneToMany(mappedBy = "destino")
|
@OneToMany(mappedBy = "destino")
|
||||||
private List<Tramo> tramoDestinoList;
|
private List<Tramo> tramoDestinoList;
|
||||||
|
@Column(name = "CODANTT")
|
||||||
|
private Integer codantt;
|
||||||
|
@Column(name = "CODMUNICIPIO")
|
||||||
|
private Integer codmunicipio;
|
||||||
|
|
||||||
public Parada() {
|
public Parada() {
|
||||||
}
|
}
|
||||||
|
@ -214,6 +218,22 @@ public class Parada implements Serializable {
|
||||||
this.nodo = nodo;
|
this.nodo = nodo;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public Integer getCodantt() {
|
||||||
|
return codantt;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setCodantt(Integer codantt) {
|
||||||
|
this.codantt = codantt;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Integer getCodmunicipio() {
|
||||||
|
return codmunicipio;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setCodmunicipio(Integer codmunicipio) {
|
||||||
|
this.codmunicipio = codmunicipio;
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int hashCode() {
|
public int hashCode() {
|
||||||
int hash = 0;
|
int hash = 0;
|
||||||
|
|
Loading…
Reference in New Issue