From 7f964be76324ef42bee5edc51d6ff2885a584088 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aristides=20dos=20Reis=20J=C3=BAnior?= Date: Thu, 18 Apr 2024 21:33:23 -0300 Subject: [PATCH] bug#AL-4104 --- pom.xml | 2 +- .../ventaboletos/entidad/OrgaoConcedente.java | 13 +++++++++++++ 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 8734f91f3..f1e9e2cb9 100644 --- a/pom.xml +++ b/pom.xml @@ -3,7 +3,7 @@ 4.0.0 br.com.rjconsultores ModelWeb - 1.45.1 + 1.46.0 diff --git a/src/com/rjconsultores/ventaboletos/entidad/OrgaoConcedente.java b/src/com/rjconsultores/ventaboletos/entidad/OrgaoConcedente.java index b349ba224..07b0849ee 100644 --- a/src/com/rjconsultores/ventaboletos/entidad/OrgaoConcedente.java +++ b/src/com/rjconsultores/ventaboletos/entidad/OrgaoConcedente.java @@ -127,6 +127,11 @@ public class OrgaoConcedente implements Serializable, Auditavel @AuditarAtributo(nome = "Idade Maxima Jovem") @Column(name = "IDADE_MAX_JOVEM") private Integer idadeMaximaJovem; + + + @Column(name = "CUSTOMIZACAORODAPECUPOMDEEMBARQUE") + @NaoAuditar + private String customizacaoRodapeCupomDeEmbarque; public void addParametro(OrgaoCancelacion param) { this.orgaoCancelacionList.add(param); @@ -443,4 +448,12 @@ public class OrgaoConcedente implements Serializable, Auditavel public void setIdadeMaximaJovem(Integer idadeMaximaJovem) { this.idadeMaximaJovem = idadeMaximaJovem; } + + public String getCustomizacaoRodapeCupomDeEmbarque() { + return customizacaoRodapeCupomDeEmbarque; + } + + public void setCustomizacaoRodapeCupomDeEmbarque(String customizacaoRodapeCupomDeEmbarque) { + this.customizacaoRodapeCupomDeEmbarque = customizacaoRodapeCupomDeEmbarque; + } }