git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@21332 d1611594-4594-4d17-8e1d-87c2c4800839
parent
b00d5bd911
commit
62768b2673
|
@ -57,6 +57,10 @@ public class Estacion implements Serializable {
|
|||
@OneToOne
|
||||
@JoinColumn(name = "USUARIOBANCARIO_ID")
|
||||
private UsuarioBancario usuarioBancario;
|
||||
@Column(name = "NOMEIMPRESSORA")
|
||||
private String nomeImpressora;
|
||||
@Column(name = "NOMEARQUIVOLAYOUT")
|
||||
private String nomeArquivoLayout;
|
||||
|
||||
public Estacion() {
|
||||
}
|
||||
|
@ -153,6 +157,22 @@ public class Estacion implements Serializable {
|
|||
this.pinPadImpresoraPropia = pinPadImpresoraPropia;
|
||||
}
|
||||
|
||||
public String getNomeImpressora() {
|
||||
return nomeImpressora;
|
||||
}
|
||||
|
||||
public void setNomeImpressora(String nomeImpressora) {
|
||||
this.nomeImpressora = nomeImpressora;
|
||||
}
|
||||
|
||||
public String getNomeArquivoLayout() {
|
||||
return nomeArquivoLayout;
|
||||
}
|
||||
|
||||
public void setNomeArquivoLayout(String nomeArquivoLayout) {
|
||||
this.nomeArquivoLayout = nomeArquivoLayout;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int hashCode() {
|
||||
int hash = 0;
|
||||
|
@ -162,7 +182,6 @@ public class Estacion implements Serializable {
|
|||
|
||||
@Override
|
||||
public boolean equals(Object object) {
|
||||
// TODO: Warning - this method won't work in the case the id fields are not set
|
||||
if (!(object instanceof Estacion)) {
|
||||
return false;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue