diff --git a/src/com/rjconsultores/ventaboletos/entidad/PerfilFuncion.java b/src/com/rjconsultores/ventaboletos/entidad/PerfilFuncion.java index 376e16362..e48dc0ee8 100644 --- a/src/com/rjconsultores/ventaboletos/entidad/PerfilFuncion.java +++ b/src/com/rjconsultores/ventaboletos/entidad/PerfilFuncion.java @@ -47,6 +47,8 @@ public class PerfilFuncion implements Serializable { @JoinColumn(name = "FUNCIONSISTEMA_ID", referencedColumnName = "FUNCIONSISTEMA_ID") @ManyToOne private FuncionSistema funcionSistema; + @Column(name = "INDLECTURA") + private Boolean indLectura; public PerfilFuncion() { } @@ -103,7 +105,15 @@ public class PerfilFuncion implements Serializable { this.funcionSistema = funcionSistema; } - @Override + public Boolean getIndLectura() { + return indLectura; + } + + public void setIndLectura(Boolean indLectura) { + this.indLectura = indLectura; + } + + @Override public int hashCode() { int hash = 0; hash += (perfilfuncionId != null ? perfilfuncionId.hashCode() : 0);