/* * Copyright (C) 2012 Miguel Angel Garcia<miguelangel.garcia@gmail.com> * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ package org.magmax.master.project.persistence.pojo; import javax.persistence.*; /** * * @author Miguel Angel Garcia <miguelangel.garcia@gmail.com> */ @Entity public class SoldProduct implements GenericEntity<Integer> { @Id @GeneratedValue private Integer id; @OneToOne(targetEntity = Product.class) private Product product; private Integer units; private Float prizePerUnit; @ManyToOne(targetEntity = Invoice.class) private Invoice invoice; public Integer getId() { return id; } public void setId(Integer id) { this.id = id; } public Float getPrizePerUnit() { return prizePerUnit; } public void setPrizePerUnit(Float prizePerUnit) { this.prizePerUnit = prizePerUnit; } public Product getProduct() { return product; } public void setProduct(Product product) { this.product = product; } public Integer getUnits() { return units; } public void setUnits(Integer units) { this.units = units; } public Invoice getInvoice() { return invoice; } public void setInvoice(Invoice invoice) { this.invoice = invoice; } }