fixes bug#AL-4274
parent
8a7d104761
commit
829b09cf21
2
pom.xml
2
pom.xml
|
@ -3,7 +3,7 @@
|
|||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>br.com.rjconsultores</groupId>
|
||||
<artifactId>ModelWeb</artifactId>
|
||||
<version>1.121.2</version>
|
||||
<version>1.121.3</version>
|
||||
|
||||
<distributionManagement>
|
||||
<repository>
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
Loading…
Reference in New Issue