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

Facturas

package com.avbravo.webtestreport.entity;

import com.avbravo.jmoordb.anotations.Embedded;
import com.avbravo.jmoordb.anotations.Id;
import java.util.List;
import lombok.Getter;
import lombok.Setter;

/**
 *
 * @author avbravo
 */
@Getter
@Setter
public class Facturas {
    @Id
    private Integer idfactura;
    private String cliente;
    @Embedded
    private List<Detalles> detalles;

    public Facturas() {
    }

    public Facturas(Integer idfactura, String cliente, List<Detalles> detalles) {
        this.idfactura = idfactura;
        this.cliente = cliente;
        this.detalles = detalles;
    }
    
    
    
    
}
PreviousDetallesNextGrupo

Last updated 6 years ago

Was this helpful?