📄 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 + -