Merge pull request 'Aba de tarifas não cobertas no grupo de contrato feat bug#AL-4543' (!206) from AL-4543 into master

Reviewed-on: adm/ModelWeb#206
Reviewed-by: Célio de Souza Ribeiro JR <celio@rjconsultores.com.br>
master
fabio 2024-06-27 22:53:26 +00:00
commit 300732768b
2 changed files with 12 additions and 1 deletions

View File

@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>br.com.rjconsultores</groupId>
<artifactId>ModelWeb</artifactId>
<version>1.69.0</version>
<version>1.70.0</version>
<distributionManagement>
<repository>

View File

@ -53,6 +53,9 @@ public class TarifaGrupoContrato implements Serializable{
@Column(name = "USUARIO_ID")
private Integer usuarioId;
@Column(name = "INDCOBERTURA")
private boolean indCobertura;
@Column(name = "ACTIVO")
private boolean activo;
@ -117,6 +120,14 @@ public class TarifaGrupoContrato implements Serializable{
this.usuarioId = usuarioId;
}
public boolean isIndCobertura() {
return indCobertura;
}
public void setIndCobertura(boolean indCobertura) {
this.indCobertura = indCobertura;
}
public boolean isActivo() {
return activo;
}