Aba de tarifas não cobertas no grupo de contrato feat bug#AL-4543
parent
9a18abc4d2
commit
38b8fb6e9e
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.69.0</version>
|
||||
<version>1.70.0</version>
|
||||
|
||||
<distributionManagement>
|
||||
<repository>
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue