?? auditinfo.java
字號:
package cn.edu.buaa.ieguam.logmanage.pojos;
import java.util.Date;
import cn.edu.buaa.ieguam.logmanage.Pojo;
public class AuditInfo implements Pojo
{
private Integer id = null;
private Date auditDate = null;
private Integer eventType = null;
private Integer auditType = null;
private String ipAddr = null;
private String hostName = null;
private Date markTime = null;
/**
* Getting and setting methods
*/
public void setId(Integer id)
{
this.id = id;
}
public void setAuditDate(Date auditDate)
{
this.auditDate = auditDate;
}
public void setEventType(Integer eventType)
{
this.eventType = eventType;
}
public void setAuditType(Integer auditType)
{
this.auditType = auditType;
}
public void setIpAddr(String ipAddr)
{
this.ipAddr = ipAddr;
}
public void setHostName(String hostName)
{
this.hostName = hostName;
}
public void setMarkTime(Date markTime)
{
this.markTime = markTime;
}
public Date getAuditDate()
{
return this.auditDate;
}
public Integer getEventType()
{
return this.eventType;
}
public Integer getAuditType()
{
return this.auditType;
}
public String getIpAddr()
{
return this.ipAddr;
}
public String getHostName()
{
return this.hostName;
}
public Date getMarkTime()
{
return this.markTime;
}
public Object getColValue(String colName)
{
// TODO Auto-generated method stub
return null;
}
public void setColValue(String colName, Object value)
{
// TODO Auto-generated method stub
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -