diff --git a/pom.xml b/pom.xml
index 6862cf176..0d6ea0e1a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -2,9 +2,8 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4.0.0
br.com.rjconsultores
- ModelWeb
+ ModelWeb
1.0.18
-
rj-releases
diff --git a/src/com/rjconsultores/ventaboletos/entidad/FechamentoBoleto.java b/src/com/rjconsultores/ventaboletos/entidad/FechamentoBoleto.java
index 9de0ef859..6e6e68f88 100644
--- a/src/com/rjconsultores/ventaboletos/entidad/FechamentoBoleto.java
+++ b/src/com/rjconsultores/ventaboletos/entidad/FechamentoBoleto.java
@@ -80,6 +80,9 @@ public class FechamentoBoleto implements java.io.Serializable{
@Column(name = "STATUS")
private String status;
+ @Column(name = "TIPO_PAGAMENTO")
+ private String tipoPagamento;
+
@Column(name = "REMESSA_ID")
private Long remessaId;
@@ -254,4 +257,12 @@ public class FechamentoBoleto implements java.io.Serializable{
public void setUsuarioQuitacao(Integer usuarioQuitacao) {
this.usuarioQuitacao = usuarioQuitacao;
}
+
+ public String getTipoPagamento() {
+ return tipoPagamento;
+ }
+
+ public void setTipoPagamento(String tipoPagamento) {
+ this.tipoPagamento = tipoPagamento;
+ }
}