git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@20229 d1611594-4594-4d17-8e1d-87c2c4800839
parent
05281bf3c4
commit
401e4c00d9
|
@ -61,7 +61,6 @@
|
|||
<classpathentry kind="lib" path="/LibreriasAdmVenta/org.springframework.web-3.0.6.RELEASE.jar"/>
|
||||
<classpathentry kind="lib" path="/LibreriasAdmVenta/org.springframework.web.portlet-3.0.6.RELEASE.jar"/>
|
||||
<classpathentry kind="lib" path="/LibreriasAdmVenta/org.springframework.web.servlet-3.0.6.RELEASE.jar"/>
|
||||
<classpathentry kind="lib" path="/LibreriasAdmVenta/org.springframework.web.struts-3.0.6.RELEASE.jar"/>
|
||||
<classpathentry kind="lib" path="/LibreriasAdmVenta/spring-security-acl-3.0.7.RELEASE.jar"/>
|
||||
<classpathentry kind="lib" path="/LibreriasAdmVenta/spring-security-aspects-3.0.7.RELEASE.jar"/>
|
||||
<classpathentry kind="lib" path="/LibreriasAdmVenta/spring-security-cas-client-3.0.7.RELEASE.jar"/>
|
||||
|
|
|
@ -60,6 +60,8 @@ public class Ciudad implements Serializable {
|
|||
private Integer zonaHoraria;
|
||||
@OneToMany(mappedBy = "coloniaId")
|
||||
private List<Colonia> lsColonia;
|
||||
@Column(name = "CODMUNICIPIO")
|
||||
private Integer codmunicipio;
|
||||
|
||||
public Ciudad() {
|
||||
}
|
||||
|
@ -140,6 +142,13 @@ public class Ciudad implements Serializable {
|
|||
this.zonaHoraria = zonaHoraria;
|
||||
}
|
||||
|
||||
public Integer getCodmunicipio() {
|
||||
return codmunicipio;
|
||||
}
|
||||
|
||||
public void setCodmunicipio(Integer codmunicipio) {
|
||||
this.codmunicipio = codmunicipio;
|
||||
}
|
||||
@Override
|
||||
public int hashCode() {
|
||||
int hash = 0;
|
||||
|
|
|
@ -38,7 +38,7 @@ public class Estado implements Serializable {
|
|||
private Integer estadoId;
|
||||
@Column(name = "NOMBESTADO")
|
||||
private String nombestado;
|
||||
@Column(name = "CVEBESTADO")
|
||||
@Column(name = "CVEESTADO")
|
||||
private String cveestado;
|
||||
@Column(name = "ACTIVO")
|
||||
private Boolean activo;
|
||||
|
|
|
@ -76,8 +76,7 @@ public class Parada implements Serializable {
|
|||
private List<Tramo> tramoDestinoList;
|
||||
@Column(name = "CODANTT")
|
||||
private Integer codantt;
|
||||
@Column(name = "CODMUNICIPIO")
|
||||
private Integer codmunicipio;
|
||||
|
||||
|
||||
public Parada() {
|
||||
}
|
||||
|
@ -226,14 +225,6 @@ public class Parada implements Serializable {
|
|||
this.codantt = codantt;
|
||||
}
|
||||
|
||||
public Integer getCodmunicipio() {
|
||||
return codmunicipio;
|
||||
}
|
||||
|
||||
public void setCodmunicipio(Integer codmunicipio) {
|
||||
this.codmunicipio = codmunicipio;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int hashCode() {
|
||||
int hash = 0;
|
||||
|
|
Loading…
Reference in New Issue