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

📄 information.java

📁 一个采用J2EE技术实现的企业协同工作台
💻 JAVA
字号:
package common.work.bean;

import java.util.Date;

//用来存放工作信息的数据表
public class Information implements java.io.Serializable {

	// 工作数据表中的字段属性
	private Integer informationid;
	private String informationname;      //工作信息的名称
	private String content;              //工作具体内容
	private Date begintime;              //发布该工作的具体时间
	private String workname; 
	private String type;

	//构造方法1
	public Information() {
	}

	//构造方法2
	public Information(String informationname, String content) {
		this.informationname = informationname;
		this.content = content;
	}

	//构造方法3
	public Information(String informationname, String content, Date begintime,
			String workname,String type) {
		this.informationname = informationname;
		this.content = content;
		this.begintime = begintime;
		this.workname = workname;
		this.type = type;
	}

	// 各属性的Get和Set方法
	public Integer getInformationid() {
		return this.informationid;
	}

	public void setInformationid(Integer informationid) {
		this.informationid = informationid;
	}

	public String getInformationname() {
		return this.informationname;
	}

	public void setInformationname(String informationname) {
		this.informationname = informationname;
	}

	public String getContent() {
		return this.content;
	}

	public void setContent(String content) {
		this.content = content;
	}

	public Date getBegintime() {
		return this.begintime;
	}

	public void setBegintime(Date begintime) {
		this.begintime = begintime;
	}

	public String getWorkname() {
		return this.workname;
	}

	public void setWorkname(String workname) {
		this.workname = workname;
	}

	public String getType() {
		return type;
	}

	public void setType(String type) {
		this.type = type;
	}

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -