📄 userrecord.java
字号:
/**
* Created by IntelliJ IDEA.
* User: User
* Date: 20.04.2006
* Time: 2:15:52
* To change this template use File | Settings | File Templates.
*/
public class UserRecord
{
private String name;
private String password;
private int loginAtt;
public UserRecord(String name, String password, int loginAtt)
{
this.name = name;
this.password = password;
this.loginAtt = loginAtt;
}
public int getLoginAtt()
{
return loginAtt;
}
public void setLoginAtt(int loginAtt)
{
this.loginAtt = loginAtt;
}
public String getName()
{
return name;
}
public void setName(String name)
{
this.name = name;
}
public String getPassword()
{
return password;
}
public void setPassword(String password)
{
this.password = password;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -