From 59c3411321ff07467d63ecb3e8ea2436faa3150f Mon Sep 17 00:00:00 2001 From: Lucas Date: Wed, 10 Apr 2024 20:09:45 -0300 Subject: [PATCH] AL-4135 --- pom.xml | 2 +- .../rjconsultores/ventaboletos/entidad/Empresa.java | 12 +++++++++++- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 41167ee3a..cada2e45f 100644 --- a/pom.xml +++ b/pom.xml @@ -3,7 +3,7 @@ 4.0.0 br.com.rjconsultores ModelWeb - 1.44.0 + 1.44.1 diff --git a/src/com/rjconsultores/ventaboletos/entidad/Empresa.java b/src/com/rjconsultores/ventaboletos/entidad/Empresa.java index e783d2b2e..a1db2e6a4 100644 --- a/src/com/rjconsultores/ventaboletos/entidad/Empresa.java +++ b/src/com/rjconsultores/ventaboletos/entidad/Empresa.java @@ -451,6 +451,9 @@ public class Empresa implements Serializable, Auditavel { @Column(name = "INDIMPRESSAOAPOSCONFABERTO") private Boolean indImpressaoAposConfAberto;; + @Column(name = "INDSAFTAO") + private Boolean indSaftao; + public Empresa() { super(); } @@ -1642,6 +1645,13 @@ public class Empresa implements Serializable, Auditavel { public void setIndImpressaoAposConfAberto(Boolean indImpressaoAposConfAberto) { this.indImpressaoAposConfAberto = indImpressaoAposConfAberto; } - + + public Boolean getIndSaftao() { + return indSaftao; + } + + public void setIndSaftao(Boolean indSaftao) { + this.indSaftao = indSaftao; + } }