📄 audittype.java
字号:
package cn.edu.buaa.ieguam.logmanage.pojos;
import cn.edu.buaa.ieguam.logmanage.Pojo;
public class AuditType implements Pojo
{
private Integer id = null;
private String tableIndex = null;
private String typeName = null;
private String description = null;
public void setId(Integer id)
{
this.id = id;
}
public void setTableIndex(String tableIndex)
{
this.tableIndex = tableIndex;
}
public void setTypeName(String typeName)
{
this.typeName = typeName;
}
public void setDescription(String description)
{
this.description = description;
}
public Integer getId()
{
return this.id;
}
public String getTableIndex()
{
return this.tableIndex;
}
public String getTypeName()
{
return this.typeName;
}
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 + -