Created
September 11, 2022 05:26
-
-
Save moomdate/ba3965263e82905397873c29334e8b90 to your computer and use it in GitHub Desktop.
auto id
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.AUTO) | |
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