This repository has been archived on 2020-08-02. You can view files and clone it, but cannot push or open issues or pull requests.
e-commerce/prototype/src/main/java/org/hso/ecommerce/entities/CustomerPayment.java

19 lines
315 B
Java
Raw Normal View History

package org.hso.ecommerce.entities;
import javax.persistence.*;
@Entity
@Table(name = "customer_payments")
public class CustomerPayment {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
@Basic
public long id;
public int amountCent;
@Embedded
public PaymentMethod payment;
}