fixes bug#20410

qua:
dev:Valdir
Alteração adicionar aprâmetro url base seguro opcional.

git-svn-id: http://desenvolvimento.rjconsultores.com.br/repositorio/sco/AdmVenta/Model/trunk/modelWeb@103965 d1611594-4594-4d17-8e1d-87c2c4800839
master
valdevir 2020-10-26 14:51:16 +00:00
parent dcb2bb106b
commit 1cb2219e33
1 changed files with 12 additions and 0 deletions

View File

@ -346,6 +346,9 @@ public class Empresa implements Serializable {
@Column(name = "INDSEGUNDAVIAFECHAMENTOCAIXA") @Column(name = "INDSEGUNDAVIAFECHAMENTOCAIXA")
private Boolean indSegundaViaFechamentoCaixa; private Boolean indSegundaViaFechamentoCaixa;
@Column(name = "URLBASESEGURO")
private String urlBaseEmpresaSeguro;
public Empresa() { public Empresa() {
super(); super();
} }
@ -1287,4 +1290,13 @@ public class Empresa implements Serializable {
public void setIndExigeBpeExcessoBagagem(Boolean indExigeBpeExcessoBagagem) { public void setIndExigeBpeExcessoBagagem(Boolean indExigeBpeExcessoBagagem) {
this.indExigeBpeExcessoBagagem = indExigeBpeExcessoBagagem; this.indExigeBpeExcessoBagagem = indExigeBpeExcessoBagagem;
} }
public String getUrlBaseEmpresaSeguro() {
return urlBaseEmpresaSeguro;
}
public void setUrlBaseEmpresaSeguro(String urlBaseEmpresaSeguro) {
this.urlBaseEmpresaSeguro = urlBaseEmpresaSeguro;
}
} }