bug#AL-4032

master
wallace.henrique 2024-03-20 20:03:21 -03:00
parent abd3078631
commit 578af26e5e
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.42.2</version> <version>1.43.0</version>
<distributionManagement> <distributionManagement>
<repository> <repository>

View File

@ -448,6 +448,9 @@ public class Empresa implements Serializable, Auditavel<Empresa> {
@Column(name = "SENHAINTEGRACAOAGR") @Column(name = "SENHAINTEGRACAOAGR")
private String senhaIntegracaoAGR; private String senhaIntegracaoAGR;
@Column(name = "INDIMPRESSAOAPOSCONFABERTO")
private Boolean indImpressaoAposConfAberto;;
public Empresa() { public Empresa() {
super(); super();
} }
@ -1631,4 +1634,14 @@ public class Empresa implements Serializable, Auditavel<Empresa> {
public void setSenhaIntegracaoAGR(String senhaIntegracaoAGR) { public void setSenhaIntegracaoAGR(String senhaIntegracaoAGR) {
this.senhaIntegracaoAGR = senhaIntegracaoAGR; this.senhaIntegracaoAGR = senhaIntegracaoAGR;
} }
public Boolean getIndImpressaoAposConfAberto() {
return indImpressaoAposConfAberto;
}
public void setIndImpressaoAposConfAberto(Boolean indImpressaoAposConfAberto) {
this.indImpressaoAposConfAberto = indImpressaoAposConfAberto;
}
} }