Skip to content

Instantly share code, notes, and snippets.

@moomdate
Created September 11, 2022 05:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save moomdate/8662f391e78ffdbd9514ffbb400b5aaf to your computer and use it in GitHub Desktop.
Save moomdate/8662f391e78ffdbd9514ffbb400b5aaf to your computer and use it in GitHub Desktop.
@Data
@Entity
@Table(name = "student")
public class Student {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long id;
private String name;
private Integer age;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment