fixes bug#AL-4274

master
Aristides dos Reis Júnior 2024-10-23 14:20:26 -03:00
parent 8a7d104761
commit 829b09cf21
2 changed files with 14 additions and 1 deletions

View File

@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>br.com.rjconsultores</groupId> <groupId>br.com.rjconsultores</groupId>
<artifactId>ModelWeb</artifactId> <artifactId>ModelWeb</artifactId>
<version>1.121.2</version> <version>1.121.3</version>
<distributionManagement> <distributionManagement>
<repository> <repository>

View File

@ -38,6 +38,9 @@ public class EmpresaNequiConfig implements Serializable {
private String url; private String url;
@Column(name = "CODE") @Column(name = "CODE")
private String code; private String code;
@Column(name = "URL_AUTH")
private String urlAuth;
private Boolean activo; private Boolean activo;
private Date fecmodif; private Date fecmodif;
@ -124,4 +127,14 @@ public class EmpresaNequiConfig implements Serializable {
this.usuarioId = usuarioId; this.usuarioId = usuarioId;
} }
public String getUrlAuth() {
return urlAuth;
}
public void setUrlAuth(String urlAuth) {
this.urlAuth = urlAuth;
}
} }