Merge pull request 'Al-1627' (#17) from Al-1627 into master
Reviewed-on: http://18.235.188.113:3000/adm/ModelWeb/pulls/17 Reviewed-by: fabio <fabio.faria@rjconsultores.com.br> Reviewed-by: wallace <wallace@rjconsultores.com.br>master
commit
1e9972242d
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.19</version>
|
<version>1.0.20</version>
|
||||||
<distributionManagement>
|
<distributionManagement>
|
||||||
<repository>
|
<repository>
|
||||||
<id>rj-releases</id>
|
<id>rj-releases</id>
|
||||||
|
|
|
@ -95,5 +95,10 @@ public enum TipoEventoExtra {
|
||||||
public String toString() {
|
public String toString() {
|
||||||
return "TARIFA_SAFER";
|
return "TARIFA_SAFER";
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
JUROS_CARTAO_CREDITO{
|
||||||
|
public String toString() {
|
||||||
|
return "JUROS_CARTAO_CREDITO";
|
||||||
|
}
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -408,6 +408,9 @@ public class Empresa implements Serializable, Auditavel<Empresa> {
|
||||||
|
|
||||||
@Column(name = "INDSEGUNDAVIASEGOPCIONAL")
|
@Column(name = "INDSEGUNDAVIASEGOPCIONAL")
|
||||||
private Boolean indSegundaViaSegOpcional;
|
private Boolean indSegundaViaSegOpcional;
|
||||||
|
|
||||||
|
@Column(name = "INDJUROSCREDITO")
|
||||||
|
private Boolean indJurosCredito;
|
||||||
|
|
||||||
@Transient
|
@Transient
|
||||||
@NaoAuditar
|
@NaoAuditar
|
||||||
|
@ -1516,4 +1519,12 @@ public class Empresa implements Serializable, Auditavel<Empresa> {
|
||||||
public void setIndSegundaViaSegOpcional(Boolean indSegundaViaSegOpcional) {
|
public void setIndSegundaViaSegOpcional(Boolean indSegundaViaSegOpcional) {
|
||||||
this.indSegundaViaSegOpcional = indSegundaViaSegOpcional;
|
this.indSegundaViaSegOpcional = indSegundaViaSegOpcional;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public Boolean getIndJurosCredito() {
|
||||||
|
return indJurosCredito;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setIndJurosCredito(Boolean indJurosCredito) {
|
||||||
|
this.indJurosCredito = indJurosCredito;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -46,6 +46,10 @@ public class TarjetaCredito implements Serializable {
|
||||||
@OneToOne
|
@OneToOne
|
||||||
@JoinColumn(name = "EMPRESA_ID")
|
@JoinColumn(name = "EMPRESA_ID")
|
||||||
private Empresa empresa;
|
private Empresa empresa;
|
||||||
|
@Column(name = "TARIFAMINIMA")
|
||||||
|
private BigDecimal tarifaMinima;
|
||||||
|
@Column(name = "INDAPLICAVENDA")
|
||||||
|
private Boolean indAplicaVenda;
|
||||||
|
|
||||||
public Integer getTarjetaCreditoId() {
|
public Integer getTarjetaCreditoId() {
|
||||||
return tarjetaCreditoId;
|
return tarjetaCreditoId;
|
||||||
|
@ -118,6 +122,22 @@ public class TarjetaCredito implements Serializable {
|
||||||
public void setEmpresa(Empresa empresa) {
|
public void setEmpresa(Empresa empresa) {
|
||||||
this.empresa = empresa;
|
this.empresa = empresa;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public BigDecimal getTarifaMinima() {
|
||||||
|
return tarifaMinima;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setTarifaMinima(BigDecimal tarifaMinima) {
|
||||||
|
this.tarifaMinima = tarifaMinima;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Boolean getIndAplicaVenda() {
|
||||||
|
return indAplicaVenda;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setIndAplicaVenda(Boolean indAplicaVenda) {
|
||||||
|
this.indAplicaVenda = indAplicaVenda;
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int hashCode() {
|
public int hashCode() {
|
||||||
|
@ -143,4 +163,5 @@ public class TarjetaCredito implements Serializable {
|
||||||
return false;
|
return false;
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue