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

Detalles

package com.avbravo.webtestreport.entity;

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

/**
 *
 * @author avbravo
 */
@Getter
@Setter
public class Detalles {
    @Id
    private Integer idproducto;
    private String producto;

    public Detalles() {
    }


    public Detalles(Integer idproducto, String producto) {
        this.idproducto = idproducto;
        this.producto = producto;
    }
    
}
PreviousEntitysNextFacturas

Last updated 5 years ago

Was this helpful?