📄 loginbean.java
字号:
package jin.bean;
import java.io.Serializable;
public class LoginBean implements Serializable
{
private String id;
private String password;
private int role;
private String delRecord;
public LoginBean()
{
//this(null,null);
}
public LoginBean(String id,String password,int role,String delRecord) //
{
this.id=id;
this.password=password;
this.role=role;
this.delRecord=delRecord;
}
public void setId(String id)
{
this.id=id;
}
public void setPassword(String password)
{
this.password=password;
}
public void setRole(int role)
{
this.role=role;
}
public void setDelRecord(String delRecord)
{
this.delRecord=delRecord;
}
public String getId()
{
return this.id;
}
public String getPassword()
{
return this.password;
}
public int getRole()
{
return this.role;
}
public String getDelRecord()
{
return this.delRecord;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -