bug#1747
parent
c3b4faf521
commit
fb25debf7a
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.0.18</version>
|
<version>1.0.19</version>
|
||||||
<distributionManagement>
|
<distributionManagement>
|
||||||
<repository>
|
<repository>
|
||||||
<id>rj-releases</id>
|
<id>rj-releases</id>
|
||||||
|
|
|
@ -127,6 +127,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;
|
||||||
|
|
||||||
|
@ -1344,6 +1348,14 @@ public class Empresa implements Serializable, Auditavel<Empresa> {
|
||||||
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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue