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;
}
}
Last updated