diff --git a/src/com/rjconsultores/ventaboletos/entidad/Empresa.java b/src/com/rjconsultores/ventaboletos/entidad/Empresa.java index 694fad99a..449dcf2a7 100644 --- a/src/com/rjconsultores/ventaboletos/entidad/Empresa.java +++ b/src/com/rjconsultores/ventaboletos/entidad/Empresa.java @@ -279,6 +279,9 @@ public class Empresa implements Serializable { @Column(name = "INDIMPLOGOBILHETEVTAEMBARCADA") private Boolean indImprimeLogoBilheteVendaEmbarcada; + @Column(name = "INDCODBARCPEMBARQUE ") + private Boolean indCodBarCpEmbarque; + public Empresa() { super(); } @@ -1052,6 +1055,14 @@ public class Empresa implements Serializable { public void setIndImprimeLogoBilheteVendaEmbarcada(Boolean indImprimeLogoBilheteVendaEmbarcada) { this.indImprimeLogoBilheteVendaEmbarcada = indImprimeLogoBilheteVendaEmbarcada; } + + public Boolean getIndCodBarCpEmbarque() { + return indCodBarCpEmbarque; + } + + public void setIndCodBarCpEmbarque(Boolean indCodBarCpEmbarque) { + this.indCodBarCpEmbarque = indCodBarCpEmbarque; + } }