gleimar 2012-08-07 14:41:09 +00:00
parent fd218ba97d
commit 05281bf3c4
2 changed files with 31 additions and 1 deletions

View File

@ -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;

View File

@ -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;