You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
275 B
15 lines
275 B
10 months ago
|
package com.example.demographdb.model.entity;
|
||
|
|
||
|
import lombok.Data;
|
||
|
|
||
|
@Data
|
||
|
public class user {
|
||
|
private int id;
|
||
|
private String name;
|
||
|
private String email;
|
||
|
private String password;
|
||
|
private String dob;
|
||
|
private String gender;
|
||
|
private String phoneNo;
|
||
|
}
|