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

📄 eventid.java

📁 具备多表组合查询组件功能。通过将表字段与表间关系映射到对象关系及属性
💻 JAVA
字号:
package cn.edu.buaa.ieguam.logmanage.pojos;

import cn.edu.buaa.ieguam.logmanage.Pojo;

public class EventId implements Pojo 
{

	
	private Integer id = null;
	private String eventName = null;
	private String eventShort = null;
	private String description = null;
	
	public void setId(Integer id)
	{
		this.id = id;
	}
	public void setEventName(String eventName)
	{ 
		this.eventName = eventName;
	}
	public void setEventShort(String eventShort)
	{ 
		this.eventShort = eventShort;
	}
	public void setDescription(String description)
	{ 
		this.description = description;
	}
	
	
	public Integer getId()
	{
		return this.id;
	}
	public String getEventName()
	{
		return this.eventName;
	}
	public String getEventShort()
	{
		return this.eventShort;
	}
	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 + -