diff --git a/src/com/rjconsultores/ventaboletos/entidad/PtovtaCatInd.java b/src/com/rjconsultores/ventaboletos/entidad/PtovtaCatInd.java index a2cac35b4..0c2a5cc32 100644 --- a/src/com/rjconsultores/ventaboletos/entidad/PtovtaCatInd.java +++ b/src/com/rjconsultores/ventaboletos/entidad/PtovtaCatInd.java @@ -46,6 +46,10 @@ public class PtovtaCatInd implements Serializable { @JoinColumn(name = "EMPRESA_ID", referencedColumnName = "EMPRESA_ID") @ManyToOne private Empresa empresa; + @Column(name = "INDTOTALBUS") + private Boolean indTotalBus; + @Column(name = "INDEMBARCADA") + private Boolean indEmbarcada; public Integer getPtovtaCategoriaId() { return ptovtaCategoriaId; @@ -113,6 +117,22 @@ public class PtovtaCatInd implements Serializable { public void setEmpresa(Empresa empresa) { this.empresa = empresa; } + + public Boolean getIndTotalBus() { + return indTotalBus; + } + + public void setIndTotalBus(Boolean indTotalBus) { + this.indTotalBus = indTotalBus; + } + + public Boolean getIndEmbarcada() { + return indEmbarcada; + } + + public void setIndEmbarcada(Boolean indEmbarcada) { + this.indEmbarcada = indEmbarcada; + } @Override public int hashCode() {