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;