bug#1747
parent
c3b4faf521
commit
fb25debf7a
2
pom.xml
2
pom.xml
|
@ -3,7 +3,7 @@
|
|||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>br.com.rjconsultores</groupId>
|
||||
<artifactId>ModelWeb</artifactId>
|
||||
<version>1.0.18</version>
|
||||
<version>1.0.19</version>
|
||||
<distributionManagement>
|
||||
<repository>
|
||||
<id>rj-releases</id>
|
||||
|
|
|
@ -127,6 +127,10 @@ public class Empresa implements Serializable, Auditavel<Empresa> {
|
|||
@Column(name = "INDEXIGEBPEEXCESSOBAGAGEM")
|
||||
private Boolean indExigeBpeExcessoBagagem;
|
||||
|
||||
@Column(name = "INDVENDEBILHETESEMELHANTE")
|
||||
private Boolean indVendeDeBilheteSemelhante;
|
||||
|
||||
|
||||
@OneToMany(mappedBy = "empresa")
|
||||
private List<InscricaoEstadual> inscricoesEstaduais;
|
||||
|
||||
|
@ -1344,6 +1348,14 @@ public class Empresa implements Serializable, Auditavel<Empresa> {
|
|||
this.indExigeBpeExcessoBagagem = indExigeBpeExcessoBagagem;
|
||||
}
|
||||
|
||||
public Boolean getIndVendeDeBilheteSemelhante() {
|
||||
return indVendeDeBilheteSemelhante == null ? false: indVendeDeBilheteSemelhante ;
|
||||
}
|
||||
|
||||
public void setIndVendeDeBilheteSemelhante(Boolean indVendeDeBilheteSemelhante) {
|
||||
this.indVendeDeBilheteSemelhante = indVendeDeBilheteSemelhante;
|
||||
}
|
||||
|
||||
public String getUrlBaseEmpresaSeguro() {
|
||||
return urlBaseEmpresaSeguro;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue