⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 winlog.java

📁 具备多表组合查询组件功能。通过将表字段与表间关系映射到对象关系及属性
💻 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 + -