package net.hgdonline.pojo;
import javax.persistence.*;
/**
* Created with IntelliJ IDEA.
* User: 雄伟
* Date: 13-10-8
* Time: 下午9:48
* To change this template use File | Settings | File Templates.
*/
@Entity
@Table(name = "user")
public class User {
private int userId;
private String username;
private String password;
@Id
@Column(name = "user_id", unique = true, nullable = false, length = 20)
@GeneratedValue
public int getUserId() {
return userId;
}
public void setUserId(int userId) {
this.userId = userId;
}
@Column(name = "username", length = 50)
public String getUsername() {
return username;
}
public void setUsername(String username) {
this.username = username;
}
@Column(name = "password", length = 50)
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
}
最近下载更多
jiemomo LV12
2023年10月19日
and123456 LV11
2022年2月11日
1029162867 LV13
2021年11月8日
1065466539 LV1
2021年1月16日
mrmrmr2333 LV4
2020年11月6日
aaron2953 LV11
2020年9月1日
123sacac LV1
2020年6月17日
ahuan123 LV4
2020年6月10日
2410068425 LV23
2020年6月1日
leikelin LV8
2020年5月20日

最近浏览