Merge branch 'master' into AL-1972

master
lucas.taia 2022-12-29 11:11:23 -03:00
commit c6d9adf52b
2 changed files with 12 additions and 2 deletions

View File

@ -2,9 +2,8 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>br.com.rjconsultores</groupId>
<artifactId>ModelWeb</artifactId>
<artifactId>ModelWeb</artifactId>
<version>1.0.18</version>
<distributionManagement>
<repository>
<id>rj-releases</id>

View File

@ -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;
}
}