parent
58c2d7aff8
commit
a9fb03195a
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.14.0</version>
|
<version>1.15.0</version>
|
||||||
|
|
||||||
<distributionManagement>
|
<distributionManagement>
|
||||||
<repository>
|
<repository>
|
||||||
|
|
|
@ -256,6 +256,8 @@ public class CategoriaDescuento implements Serializable, Auditavel<CategoriaDesc
|
||||||
@NaoAuditar
|
@NaoAuditar
|
||||||
private CategoriaDescuento categoriaDescuentoClone;
|
private CategoriaDescuento categoriaDescuentoClone;
|
||||||
|
|
||||||
|
@Column(name = "INDIMPORTESEGUROOPCIONAL")
|
||||||
|
private Boolean indImporteSeguroOpcional;
|
||||||
|
|
||||||
public enum DisponibilidadeFeriado {
|
public enum DisponibilidadeFeriado {
|
||||||
// Declaração dos enum
|
// Declaração dos enum
|
||||||
|
@ -1048,4 +1050,12 @@ public class CategoriaDescuento implements Serializable, Auditavel<CategoriaDesc
|
||||||
return String.format("ID [%s]", getCategoriadescuentoId());
|
return String.format("ID [%s]", getCategoriadescuentoId());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public Boolean getIndImporteSeguroOpcional() {
|
||||||
|
return indImporteSeguroOpcional == null ? true : indImporteSeguroOpcional;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setIndImporteSeguroOpcional(Boolean indImporteSeguroOpcional) {
|
||||||
|
this.indImporteSeguroOpcional = indImporteSeguroOpcional;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue