📄 winlog.java
字号:
package cn.edu.buaa.ieguam.logmanage.pojos;
import cn.edu.buaa.ieguam.logmanage.Pojo;
public class WinLog implements Pojo
{
private Integer id = null;
private Integer auditId = null;
private String oneSource = null;
private String secondSource = null;
private String category = null;
private String usr = null;
private String description = null;
public void setId(Integer id)
{
this.id = id;
}
public void setAuditId(Integer auditId)
{
this.auditId = auditId;
}
public void setOneSource(String oneSource)
{
this.oneSource = oneSource;
}
public void setSecondSource(String secondSource)
{
this.secondSource = secondSource;
}
public void setCategory(String category)
{
this.category = category;
}
public void setUsr(String usr)
{
this.usr = usr;
}
public void setDescription(String description)
{
this.description = description;
}
public Integer getId()
{
return this.id;
}
public Integer getAuditId()
{
return this.auditId;
}
public String getOneSource()
{
return this.oneSource;
}
public String getSecondSource()
{
return this.secondSource;
}
public String getCategory()
{
return this.category;
}
public String getUsr()
{
return this.usr;
}
public String getDescription()
{
return this.description;
}
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 + -