fixes bug#AL-4274
parent
8a7d104761
commit
829b09cf21
2
pom.xml
2
pom.xml
|
@ -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>
|
||||||
|
|
|
@ -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;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
Loading…
Reference in New Issue