diff --git a/pom.xml b/pom.xml
index 6b92e468a..10da69d61 100644
--- a/pom.xml
+++ b/pom.xml
@@ -3,7 +3,7 @@
4.0.0
br.com.rjconsultores
ModelWeb
- 1.20.0
+ 1.21.0
diff --git a/src/com/rjconsultores/ventaboletos/entidad/PuntoVenta.java b/src/com/rjconsultores/ventaboletos/entidad/PuntoVenta.java
index 061e1ae88..7e9007657 100644
--- a/src/com/rjconsultores/ventaboletos/entidad/PuntoVenta.java
+++ b/src/com/rjconsultores/ventaboletos/entidad/PuntoVenta.java
@@ -346,6 +346,9 @@ public class PuntoVenta implements Serializable, Auditavel {
@Column(name = "INDBLOQUEARDESCONTOWEB")
private Boolean indBloquearDescontoWEB;
+ @Column(name = "INDTAXACONVENIENCIAORGAOCONCEDENTE")
+ private Boolean indTaxaConvenienciaOrgaoConcedente;
+
public List getCobrancaAdicionalList() {
return cobrancaAdicionalList;
}
@@ -1377,6 +1380,13 @@ public class PuntoVenta implements Serializable, Auditavel {
public void setTempoMaxServicoEmVenda(Integer tempoMaxServicoEmVenda) {
this.tempoMaxServicoEmVenda = tempoMaxServicoEmVenda;
}
-
-
+
+ public Boolean getIndTaxaConvenienciaOrgaoConcedente() {
+ return indTaxaConvenienciaOrgaoConcedente;
+ }
+
+ public void setIndTaxaConvenienciaOrgaoConcedente(Boolean indTaxaConvenienciaOrgaoConcedente) {
+ this.indTaxaConvenienciaOrgaoConcedente = indTaxaConvenienciaOrgaoConcedente;
+ }
+
}
\ No newline at end of file