master
Lucas 2024-04-10 20:09:45 -03:00
parent 8d90147453
commit 59c3411321
2 changed files with 12 additions and 2 deletions

View File

@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>br.com.rjconsultores</groupId>
<artifactId>ModelWeb</artifactId>
<version>1.44.0</version>
<version>1.44.1</version>
<distributionManagement>
<repository>

View File

@ -451,6 +451,9 @@ public class Empresa implements Serializable, Auditavel<Empresa> {
@Column(name = "INDIMPRESSAOAPOSCONFABERTO")
private Boolean indImpressaoAposConfAberto;;
@Column(name = "INDSAFTAO")
private Boolean indSaftao;
public Empresa() {
super();
}
@ -1642,6 +1645,13 @@ public class Empresa implements Serializable, Auditavel<Empresa> {
public void setIndImpressaoAposConfAberto(Boolean indImpressaoAposConfAberto) {
this.indImpressaoAposConfAberto = indImpressaoAposConfAberto;
}
public Boolean getIndSaftao() {
return indSaftao;
}
public void setIndSaftao(Boolean indSaftao) {
this.indSaftao = indSaftao;
}
}