failedlogins.java
来自「论坛软件系统亦称电子公告板(BBS)系统」· Java 代码 · 共 50 行
JAVA
50 行
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 + =
减小字号Ctrl + -
显示快捷键?