From 13ab4bdfcc8426752336a05da10d673f5b493a3f Mon Sep 17 00:00:00 2001 From: emerson Date: Mon, 21 Jan 2019 17:37:55 +0000 Subject: [PATCH] fixes bug#0013138 dev: thiago qua: renato MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Implementação efetuada. git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@89111 d1611594-4594-4d17-8e1d-87c2c4800839 --- .../ventaboletos/entidad/FechamentoParamgeral.java | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/com/rjconsultores/ventaboletos/entidad/FechamentoParamgeral.java b/src/com/rjconsultores/ventaboletos/entidad/FechamentoParamgeral.java index efc03734b..ed1cd5807 100644 --- a/src/com/rjconsultores/ventaboletos/entidad/FechamentoParamgeral.java +++ b/src/com/rjconsultores/ventaboletos/entidad/FechamentoParamgeral.java @@ -31,6 +31,7 @@ public class FechamentoParamgeral implements java.io.Serializable { private String boletoBancoCarteiraVariavel; private Integer boletoDiasVenc; private String codConvenio; + private String boletoBancoInstrucao; private Date fecmodif; @@ -188,6 +189,15 @@ public class FechamentoParamgeral implements java.io.Serializable { this.codConvenio = codConvenio; } + @Column(name = "BOLETO_BANCO_INSTRUCAO", precision = 255) + public String getBoletoBancoInstrucao() { + return boletoBancoInstrucao; + } + + public void setBoletoBancoInstrucao(String boletoBancoInstrucao) { + this.boletoBancoInstrucao = boletoBancoInstrucao; + } + @Column(name = "ACTIVO", precision = 1, scale = 0) public Boolean getActivo() { return activo;