bug#AL-4032
parent
abd3078631
commit
578af26e5e
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.42.2</version>
|
<version>1.43.0</version>
|
||||||
|
|
||||||
<distributionManagement>
|
<distributionManagement>
|
||||||
<repository>
|
<repository>
|
||||||
|
|
|
@ -447,6 +447,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;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue