Created
September 11, 2022 05:30
-
-
Save moomdate/8662f391e78ffdbd9514ffbb400b5aaf to your computer and use it in GitHub Desktop.
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
@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