From e253e3ad60492a525b8120d9b93d1a0f73ea4906 Mon Sep 17 00:00:00 2001 From: frederico Date: Fri, 1 Apr 2016 18:31:03 +0000 Subject: [PATCH] =?UTF-8?q?fixed=20bug=20#7308=20-=20tela=20Esta=C3=A7?= =?UTF-8?q?=C3=A3o:=20adi=C3=A7=C3=A3o=20do=20campo=20tipo=20de=20impresso?= =?UTF-8?q?ra?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@54498 d1611594-4594-4d17-8e1d-87c2c4800839 --- .../ventaboletos/entidad/EstacionImpresora.java | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/src/com/rjconsultores/ventaboletos/entidad/EstacionImpresora.java b/src/com/rjconsultores/ventaboletos/entidad/EstacionImpresora.java index d625d4d57..576e69463 100644 --- a/src/com/rjconsultores/ventaboletos/entidad/EstacionImpresora.java +++ b/src/com/rjconsultores/ventaboletos/entidad/EstacionImpresora.java @@ -45,7 +45,9 @@ public class EstacionImpresora implements Serializable { private Date fecmodif; @Column(name = "USUARIO_ID") private Integer usuarioId; - + @Column(name = "TIPOIMPRESSORA") + private Integer tipoImpressora; + public Integer getEstacionImpresoraId() { return estacionImpresoraId; } @@ -109,4 +111,13 @@ public class EstacionImpresora implements Serializable { public void setUsuarioId(Integer usuarioId) { this.usuarioId = usuarioId; } + + public Integer getTipoImpressora() { + return tipoImpressora; + } + + public void setTipoImpressora(Integer tipoImpressora) { + this.tipoImpressora = tipoImpressora; + } + }