git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@21105 d1611594-4594-4d17-8e1d-87c2c4800839
parent
b4221a50ff
commit
6f5c83dcd3
|
@ -0,0 +1,69 @@
|
|||
package com.rjconsultores.ventaboletos.vo.configuracioneccomerciales;
|
||||
|
||||
public class ConfigCoordenadas {
|
||||
private String lbCampo;
|
||||
private String campo;
|
||||
private Integer linha;
|
||||
private Integer coluna;
|
||||
|
||||
public ConfigCoordenadas() {
|
||||
super();
|
||||
}
|
||||
|
||||
public String getLbCampo() {
|
||||
return lbCampo;
|
||||
}
|
||||
|
||||
public void setLbCampo(String lbCampo) {
|
||||
this.lbCampo = lbCampo;
|
||||
}
|
||||
|
||||
public String getCampo() {
|
||||
return campo;
|
||||
}
|
||||
|
||||
public void setCampo(String campo) {
|
||||
this.campo = campo;
|
||||
}
|
||||
|
||||
public Integer getLinha() {
|
||||
return linha;
|
||||
}
|
||||
|
||||
public void setLinha(Integer linha) {
|
||||
this.linha = linha;
|
||||
}
|
||||
|
||||
public Integer getColuna() {
|
||||
return coluna;
|
||||
}
|
||||
|
||||
public void setColuna(Integer coluna) {
|
||||
this.coluna = coluna;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int hashCode() {
|
||||
final int prime = 31;
|
||||
int result = 1;
|
||||
result = prime * result + ((campo == null) ? 0 : campo.hashCode());
|
||||
return result;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean equals(Object obj) {
|
||||
if (this == obj)
|
||||
return true;
|
||||
if (obj == null)
|
||||
return false;
|
||||
if (getClass() != obj.getClass())
|
||||
return false;
|
||||
ConfigCoordenadas other = (ConfigCoordenadas) obj;
|
||||
if (campo == null) {
|
||||
if (other.campo != null)
|
||||
return false;
|
||||
} else if (!campo.equals(other.campo))
|
||||
return false;
|
||||
return true;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue