Skip to content

Instantly share code, notes, and snippets.

@jeanpierregomez
Created March 14, 2024 22:14
Show Gist options
  • Save jeanpierregomez/fb01d92c109ae743a5589a362cb79be0 to your computer and use it in GitHub Desktop.
Save jeanpierregomez/fb01d92c109ae743a5589a362cb79be0 to your computer and use it in GitHub Desktop.
@Entity
@Table(name = "`user`")
@Data
public class UserEntity {
@Id
private String id;
private String firstName;
private String lastName;
private String userName;
private String email;
private int age;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment