jmoordbreport
  • Introduction
  • Instalacion
  • Guia de uso
  • Proyecto Web
    • dependendencias
    • Entitys
      • Detalles
      • Facturas
      • Grupo
      • Modelo
    • Controller
    • index.xhtml
    • resources
  • Reporte Rapido
  • Reporte Editar propiedades
  • Reporte con Entity Referenciado
  • Reporte Agrupado
  • Sub Reporte
  • Integracion con iReport
Powered by GitBook
On this page

Was this helpful?

  1. Proyecto Web
  2. Entitys

Grupo

package com.avbravo.webtestreport.entity;

import com.avbravo.jmoordb.anotations.Id;
import lombok.Getter;
import lombok.Setter;

@Getter
@Setter
public class Grupo{

    @Id
    private Integer idgrupo;
    private String descripcion;
    
    private String activo;


    public Grupo() {
    }

    public Grupo(Integer idgrupo, String descripcion, String activo) {
        this.idgrupo = idgrupo;
        this.descripcion = descripcion;
        this.activo = activo;
    }

  
    
    
    @Override
    public String toString() {
        return  descripcion ;
    }

}
PreviousFacturasNextModelo

Last updated 5 years ago

Was this helpful?