Merge branch 'master' into Al-1627

master
lucas.taia 2022-12-30 18:53:53 -03:00
commit 318d8236a4
2 changed files with 14 additions and 2 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.0.18</version> <version>1.0.19</version>
<distributionManagement> <distributionManagement>
<repository> <repository>
<id>rj-releases</id> <id>rj-releases</id>

View File

@ -126,6 +126,10 @@ public class Empresa implements Serializable, Auditavel<Empresa> {
@Column(name = "INDEXIGEBPEEXCESSOBAGAGEM") @Column(name = "INDEXIGEBPEEXCESSOBAGAGEM")
private Boolean indExigeBpeExcessoBagagem; private Boolean indExigeBpeExcessoBagagem;
@Column(name = "INDVENDEBILHETESEMELHANTE")
private Boolean indVendeDeBilheteSemelhante;
@OneToMany(mappedBy = "empresa") @OneToMany(mappedBy = "empresa")
private List<InscricaoEstadual> inscricoesEstaduais; private List<InscricaoEstadual> inscricoesEstaduais;
@ -1346,7 +1350,15 @@ public class Empresa implements Serializable, Auditavel<Empresa> {
public void setIndExigeBpeExcessoBagagem(Boolean indExigeBpeExcessoBagagem) { public void setIndExigeBpeExcessoBagagem(Boolean indExigeBpeExcessoBagagem) {
this.indExigeBpeExcessoBagagem = indExigeBpeExcessoBagagem; this.indExigeBpeExcessoBagagem = indExigeBpeExcessoBagagem;
} }
public Boolean getIndVendeDeBilheteSemelhante() {
return indVendeDeBilheteSemelhante == null ? false: indVendeDeBilheteSemelhante ;
}
public void setIndVendeDeBilheteSemelhante(Boolean indVendeDeBilheteSemelhante) {
this.indVendeDeBilheteSemelhante = indVendeDeBilheteSemelhante;
}
public String getUrlBaseEmpresaSeguro() { public String getUrlBaseEmpresaSeguro() {
return urlBaseEmpresaSeguro; return urlBaseEmpresaSeguro;
} }