Skip to content

Instantly share code, notes, and snippets.

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