bug#AL-1944

Adição do campo tipo_pagamento nos boletos do fechamento
master
Fabio Faria 2022-12-27 08:47:58 -03:00
parent d5858f7510
commit 64d45e3387
2 changed files with 12 additions and 1 deletions

View File

@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>br.com.rjconsultores</groupId> <groupId>br.com.rjconsultores</groupId>
<artifactId>ModelWeb</artifactId> <artifactId>ModelWeb</artifactId>
<version>1.0.16</version> <version>1.0.17</version>
<distributionManagement> <distributionManagement>
<repository> <repository>

View File

@ -80,6 +80,9 @@ public class FechamentoBoleto implements java.io.Serializable{
@Column(name = "STATUS") @Column(name = "STATUS")
private String status; private String status;
@Column(name = "TIPO_PAGAMENTO")
private String tipoPagamento;
@Column(name = "REMESSA_ID") @Column(name = "REMESSA_ID")
private Long remessaId; private Long remessaId;
@ -254,4 +257,12 @@ public class FechamentoBoleto implements java.io.Serializable{
public void setUsuarioQuitacao(Integer usuarioQuitacao) { public void setUsuarioQuitacao(Integer usuarioQuitacao) {
this.usuarioQuitacao = usuarioQuitacao; this.usuarioQuitacao = usuarioQuitacao;
} }
public String getTipoPagamento() {
return tipoPagamento;
}
public void setTipoPagamento(String tipoPagamento) {
this.tipoPagamento = tipoPagamento;
}
} }