Skip to content

Instantly share code, notes, and snippets.

@vjrngn
Created April 24, 2019 12:57
Show Gist options
  • Save vjrngn/fe3b1a0102614788ac9567c89f2e8455 to your computer and use it in GitHub Desktop.
Save vjrngn/fe3b1a0102614788ac9567c89f2e8455 to your computer and use it in GitHub Desktop.
Orders of a customer
package com.example.demo;
import javax.persistence.*;
@Entity
@Table(name = "orders")
public class Order {
@Id
int id;
public Order() {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment