desenvolvimento (fixes bug 5765)
git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@39269 d1611594-4594-4d17-8e1d-87c2c4800839master
parent
6975bc5974
commit
f965ae1bad
|
@ -105,6 +105,8 @@ public class Cliente implements Serializable {
|
||||||
private String numIdentificaUno;
|
private String numIdentificaUno;
|
||||||
@Column(name = "NUMIDENTIFICADOS")
|
@Column(name = "NUMIDENTIFICADOS")
|
||||||
private String numIdentificaDos;
|
private String numIdentificaDos;
|
||||||
|
@Column(name = "BLOQUEO")
|
||||||
|
private Boolean bloqueo;
|
||||||
|
|
||||||
public Cliente() {
|
public Cliente() {
|
||||||
}
|
}
|
||||||
|
@ -369,6 +371,14 @@ public class Cliente implements Serializable {
|
||||||
this.numIdentificaDos = numIdentificaDos;
|
this.numIdentificaDos = numIdentificaDos;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public Boolean getBloqueo() {
|
||||||
|
return bloqueo;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setBloqueo(Boolean bloqueo) {
|
||||||
|
this.bloqueo = bloqueo;
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int hashCode() {
|
public int hashCode() {
|
||||||
int hash = 0;
|
int hash = 0;
|
||||||
|
|
Loading…
Reference in New Issue