mysqllog.java
来自「具备多表组合查询组件功能。通过将表字段与表间关系映射到对象关系及属性」· Java 代码 · 共 58 行
JAVA
58 行
package cn.edu.buaa.ieguam.logmanage.pojos;
import cn.edu.buaa.ieguam.logmanage.Pojo;
public class MySqlLog implements Pojo {
private Integer id = null;
private Integer auditId = null;
private String process = null;
private String description = null;
public void setId(Integer id)
{
this.id = id;
}
public void setAuditId(Integer auditId)
{
this.auditId = auditId;
}
public void setProcess(String process)
{
this.process = process;
}
public void setDescription(String description)
{
this.description = description;
}
public Integer getId()
{
return this.id;
}
public Integer getAuditId()
{
return this.auditId;
}
public String getProcess()
{
return this.process;
}
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 + =
减小字号Ctrl + -
显示快捷键?