From 829b09cf2122167dfd733beef44a863b7bd52b14 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aristides=20dos=20Reis=20J=C3=BAnior?= Date: Wed, 23 Oct 2024 14:20:26 -0300 Subject: [PATCH] fixes bug#AL-4274 --- pom.xml | 2 +- .../ventaboletos/entidad/EmpresaNequiConfig.java | 13 +++++++++++++ 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 0792f714f..44af86a4c 100644 --- a/pom.xml +++ b/pom.xml @@ -3,7 +3,7 @@ 4.0.0 br.com.rjconsultores ModelWeb - 1.121.2 + 1.121.3 diff --git a/src/com/rjconsultores/ventaboletos/entidad/EmpresaNequiConfig.java b/src/com/rjconsultores/ventaboletos/entidad/EmpresaNequiConfig.java index abe59c691..f963c6621 100644 --- a/src/com/rjconsultores/ventaboletos/entidad/EmpresaNequiConfig.java +++ b/src/com/rjconsultores/ventaboletos/entidad/EmpresaNequiConfig.java @@ -38,6 +38,9 @@ public class EmpresaNequiConfig implements Serializable { private String url; @Column(name = "CODE") private String code; + @Column(name = "URL_AUTH") + private String urlAuth; + private Boolean activo; private Date fecmodif; @@ -124,4 +127,14 @@ public class EmpresaNequiConfig implements Serializable { this.usuarioId = usuarioId; } + public String getUrlAuth() { + return urlAuth; + } + + public void setUrlAuth(String urlAuth) { + this.urlAuth = urlAuth; + } + + + } \ No newline at end of file