Created
April 24, 2019 12:57
-
-
Save vjrngn/fe3b1a0102614788ac9567c89f2e8455 to your computer and use it in GitHub Desktop.
Orders of a customer
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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