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; + } + }