diff --git a/pom.xml b/pom.xml index 2d7977d84..d27941e4d 100644 --- a/pom.xml +++ b/pom.xml @@ -3,7 +3,7 @@ 4.0.0 br.com.rjconsultores ModelWeb - 1.0.16 + 1.0.17 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; + } }