?? userinfo.java
字號:
package com.t11.entity;
/**
* Userinfo entity.
*
* @author MyEclipse Persistence Tools
*/
public class Userinfo implements java.io.Serializable {
// Fields
private Long id;
private String account;
private String psw;
private Long status;
// Constructors
/** default constructor */
public Userinfo() {
}
/** minimal constructor */
public Userinfo(Long id) {
this.id = id;
}
/** full constructor */
public Userinfo(Long id, String account, String psw, Long status) {
this.id = id;
this.account = account;
this.psw = psw;
this.status = status;
}
// Property accessors
public Long getId() {
return this.id;
}
public void setId(Long id) {
this.id = id;
}
public String getAccount() {
return this.account;
}
public void setAccount(String account) {
this.account = account;
}
public String getPsw() {
return this.psw;
}
public void setPsw(String psw) {
this.psw = psw;
}
public Long getStatus() {
return this.status;
}
public void setStatus(Long status) {
this.status = status;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -