construct method added

This commit is contained in:
geek 2017-06-23 13:50:58 +09:00
parent 6093366631
commit 80452e4ff3

View File

@ -11,6 +11,14 @@ public class MetaMemberStatus {
private short id;
private String name;
public MetaMemberStatus() {
}
public MetaMemberStatus(short id) {
this.id = id;
}
@Id
@GeneratedValue(strategy= GenerationType.IDENTITY)
public short getId() {