From 7ef0a9c677894471187ff4ea9e0a3119b204bb86 Mon Sep 17 00:00:00 2001 From: alberto Date: Mon, 26 Nov 2018 15:27:32 +0000 Subject: [PATCH] =?UTF-8?q?BPE=20-=20Customizar=20ativa=C3=A7=C3=A3o=20do?= =?UTF-8?q?=20bpe=20por=20esta=C3=A7=C3=A3o=20bug#12622=20dev:trevezani=20?= =?UTF-8?q?qua:?= 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@87355 d1611594-4594-4d17-8e1d-87c2c4800839 --- .../rjconsultores/ventaboletos/entidad/Estacion.java | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/com/rjconsultores/ventaboletos/entidad/Estacion.java b/src/com/rjconsultores/ventaboletos/entidad/Estacion.java index 71f4bbb73..44117e9bf 100644 --- a/src/com/rjconsultores/ventaboletos/entidad/Estacion.java +++ b/src/com/rjconsultores/ventaboletos/entidad/Estacion.java @@ -90,6 +90,8 @@ public class Estacion implements Serializable { private String nomeImpressoraBPe; @Column(name = "INDSTOCKCENTRAL") private Boolean indStockCentral; + @Column(name = "INDVOUCHER") + private Boolean indVoucher; @OneToMany(mappedBy = "estacion", cascade = CascadeType.ALL, fetch = FetchType.EAGER) @Where(clause="activo=1") @@ -404,4 +406,12 @@ public class Estacion implements Serializable { this.nomeImpressoraBPe = nomeImpressoraBPe; } + public Boolean getIndVoucher() { + return indVoucher; + } + + public void setIndVoucher(Boolean indVoucher) { + this.indVoucher = indVoucher; + } + }