git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@22109 d1611594-4594-4d17-8e1d-87c2c4800839
parent
0c9ab5462e
commit
11ba6d2df3
|
@ -28,11 +28,11 @@ import javax.persistence.TemporalType;
|
||||||
@SequenceGenerator(name = "ESTACION_SEQ", sequenceName = "ESTACION_SEQ", allocationSize = 1)
|
@SequenceGenerator(name = "ESTACION_SEQ", sequenceName = "ESTACION_SEQ", allocationSize = 1)
|
||||||
public class Estacion implements Serializable {
|
public class Estacion implements Serializable {
|
||||||
|
|
||||||
public final static String CONEXION_SANTANDER = "S";
|
public final static String CONEXION_SANTANDER = "S";
|
||||||
public final static String CONEXION_BANORTE = "B";
|
public final static String CONEXION_BANORTE = "B";
|
||||||
public final static String CONEXION_SW_MANUAL = "M";
|
public final static String CONEXION_SW_MANUAL = "M";
|
||||||
public final static String CONEXION_SW_PINPAD = "E";
|
public final static String CONEXION_SW_PINPAD = "E";
|
||||||
|
|
||||||
private static final long serialVersionUID = 1L;
|
private static final long serialVersionUID = 1L;
|
||||||
@Id
|
@Id
|
||||||
@Basic(optional = false)
|
@Basic(optional = false)
|
||||||
|
@ -66,6 +66,8 @@ public class Estacion implements Serializable {
|
||||||
private String nomeImpressora;
|
private String nomeImpressora;
|
||||||
@Column(name = "NOMEARQUIVOLAYOUT")
|
@Column(name = "NOMEARQUIVOLAYOUT")
|
||||||
private String nomeArquivoLayout;
|
private String nomeArquivoLayout;
|
||||||
|
@Column(name = "NOMEIMPRESSORARELATORIO")
|
||||||
|
private String nomeImpressoraRelatorio;
|
||||||
|
|
||||||
public Estacion() {
|
public Estacion() {
|
||||||
}
|
}
|
||||||
|
@ -178,6 +180,14 @@ public class Estacion implements Serializable {
|
||||||
this.nomeArquivoLayout = nomeArquivoLayout;
|
this.nomeArquivoLayout = nomeArquivoLayout;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public String getNomeImpressoraRelatorio() {
|
||||||
|
return nomeImpressoraRelatorio;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setNomeImpressoraRelatorio(String nomeImpressoraRelatorio) {
|
||||||
|
this.nomeImpressoraRelatorio = nomeImpressoraRelatorio;
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int hashCode() {
|
public int hashCode() {
|
||||||
int hash = 0;
|
int hash = 0;
|
||||||
|
|
|
@ -3,6 +3,7 @@ package com.rjconsultores.ventaboletos.vo.configuracioneccomerciales;
|
||||||
public class ConfigCoordenadas {
|
public class ConfigCoordenadas {
|
||||||
private String lbCampo;
|
private String lbCampo;
|
||||||
private String campo;
|
private String campo;
|
||||||
|
private String mensagem;
|
||||||
private Integer linha;
|
private Integer linha;
|
||||||
private Integer coluna;
|
private Integer coluna;
|
||||||
|
|
||||||
|
@ -42,6 +43,14 @@ public class ConfigCoordenadas {
|
||||||
this.coluna = coluna;
|
this.coluna = coluna;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public String getMensagem() {
|
||||||
|
return mensagem;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setMensagem(String mensagem) {
|
||||||
|
this.mensagem = mensagem;
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int hashCode() {
|
public int hashCode() {
|
||||||
final int prime = 31;
|
final int prime = 31;
|
||||||
|
|
Loading…
Reference in New Issue