16 lines
312 B
Java
16 lines
312 B
Java
|
package com.realnet.model;
|
||
|
|
||
|
import javax.persistence.GeneratedValue;
|
||
|
import javax.persistence.GenerationType;
|
||
|
import javax.persistence.Id;
|
||
|
|
||
|
public class TestModel {
|
||
|
|
||
|
@Id
|
||
|
@GeneratedValue(strategy = GenerationType.IDENTITY)
|
||
|
private int id;
|
||
|
private String name;
|
||
|
private String email;
|
||
|
private String mob_no;
|
||
|
}
|