AL-4135
parent
8d90147453
commit
59c3411321
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.44.0</version>
|
<version>1.44.1</version>
|
||||||
|
|
||||||
<distributionManagement>
|
<distributionManagement>
|
||||||
<repository>
|
<repository>
|
||||||
|
|
|
@ -451,6 +451,9 @@ public class Empresa implements Serializable, Auditavel<Empresa> {
|
||||||
@Column(name = "INDIMPRESSAOAPOSCONFABERTO")
|
@Column(name = "INDIMPRESSAOAPOSCONFABERTO")
|
||||||
private Boolean indImpressaoAposConfAberto;;
|
private Boolean indImpressaoAposConfAberto;;
|
||||||
|
|
||||||
|
@Column(name = "INDSAFTAO")
|
||||||
|
private Boolean indSaftao;
|
||||||
|
|
||||||
public Empresa() {
|
public Empresa() {
|
||||||
super();
|
super();
|
||||||
}
|
}
|
||||||
|
@ -1643,5 +1646,12 @@ public class Empresa implements Serializable, Auditavel<Empresa> {
|
||||||
this.indImpressaoAposConfAberto = indImpressaoAposConfAberto;
|
this.indImpressaoAposConfAberto = indImpressaoAposConfAberto;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public Boolean getIndSaftao() {
|
||||||
|
return indSaftao;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setIndSaftao(Boolean indSaftao) {
|
||||||
|
this.indSaftao = indSaftao;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue