📄 failedlogins.java
字号:
package cn.jsprun.domain;
public class Failedlogins implements java.io.Serializable {
private static final long serialVersionUID = -5011365280839625333L;
private String ip;
private Byte count;
private Integer lastupdate;
public Failedlogins() {
}
public Failedlogins(String ip, Byte count, Integer lastupdate) {
this.ip = ip;
this.count = count;
this.lastupdate = lastupdate;
}
public String getIp() {
return this.ip;
}
public void setIp(String ip) {
this.ip = ip;
}
public Byte getCount() {
return this.count;
}
public void setCount(Byte count) {
this.count = count;
}
public Integer getLastupdate() {
return this.lastupdate;
}
public void setLastupdate(Integer lastupdate) {
this.lastupdate = lastupdate;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -