git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@22109 d1611594-4594-4d17-8e1d-87c2c4800839
parent
0c9ab5462e
commit
11ba6d2df3
|
@ -66,6 +66,8 @@ public class Estacion implements Serializable {
|
|||
private String nomeImpressora;
|
||||
@Column(name = "NOMEARQUIVOLAYOUT")
|
||||
private String nomeArquivoLayout;
|
||||
@Column(name = "NOMEIMPRESSORARELATORIO")
|
||||
private String nomeImpressoraRelatorio;
|
||||
|
||||
public Estacion() {
|
||||
}
|
||||
|
@ -178,6 +180,14 @@ public class Estacion implements Serializable {
|
|||
this.nomeArquivoLayout = nomeArquivoLayout;
|
||||
}
|
||||
|
||||
public String getNomeImpressoraRelatorio() {
|
||||
return nomeImpressoraRelatorio;
|
||||
}
|
||||
|
||||
public void setNomeImpressoraRelatorio(String nomeImpressoraRelatorio) {
|
||||
this.nomeImpressoraRelatorio = nomeImpressoraRelatorio;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int hashCode() {
|
||||
int hash = 0;
|
||||
|
|
|
@ -3,6 +3,7 @@ package com.rjconsultores.ventaboletos.vo.configuracioneccomerciales;
|
|||
public class ConfigCoordenadas {
|
||||
private String lbCampo;
|
||||
private String campo;
|
||||
private String mensagem;
|
||||
private Integer linha;
|
||||
private Integer coluna;
|
||||
|
||||
|
@ -42,6 +43,14 @@ public class ConfigCoordenadas {
|
|||
this.coluna = coluna;
|
||||
}
|
||||
|
||||
public String getMensagem() {
|
||||
return mensagem;
|
||||
}
|
||||
|
||||
public void setMensagem(String mensagem) {
|
||||
this.mensagem = mensagem;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int hashCode() {
|
||||
final int prime = 31;
|
||||
|
|
Loading…
Reference in New Issue