bug#AL-4032
parent
abd3078631
commit
578af26e5e
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.42.2</version>
|
||||
<version>1.43.0</version>
|
||||
|
||||
<distributionManagement>
|
||||
<repository>
|
||||
|
|
|
@ -447,6 +447,9 @@ public class Empresa implements Serializable, Auditavel<Empresa> {
|
|||
|
||||
@Column(name = "SENHAINTEGRACAOAGR")
|
||||
private String senhaIntegracaoAGR;
|
||||
|
||||
@Column(name = "INDIMPRESSAOAPOSCONFABERTO")
|
||||
private Boolean indImpressaoAposConfAberto;;
|
||||
|
||||
public Empresa() {
|
||||
super();
|
||||
|
@ -1631,4 +1634,14 @@ public class Empresa implements Serializable, Auditavel<Empresa> {
|
|||
public void setSenhaIntegracaoAGR(String senhaIntegracaoAGR) {
|
||||
this.senhaIntegracaoAGR = senhaIntegracaoAGR;
|
||||
}
|
||||
|
||||
public Boolean getIndImpressaoAposConfAberto() {
|
||||
return indImpressaoAposConfAberto;
|
||||
}
|
||||
|
||||
public void setIndImpressaoAposConfAberto(Boolean indImpressaoAposConfAberto) {
|
||||
this.indImpressaoAposConfAberto = indImpressaoAposConfAberto;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue