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

📄 affixmessage.java

📁 实现了基本的oa功能:个人日志。。。
💻 JAVA
字号:
package oa.dailywork.model.po;

import java.util.Date;
import java.util.HashSet;
import java.util.Set;

/**
 * AffixMessage generated by MyEclipse Persistence Tools
 */

public class AffixMessage implements java.io.Serializable {

	// Fields

	private Long affixId;

	private String fileName;

	private Date attachDate;

	private String fileAdd;
	

	private AcceptFile acceptfile;

	// Constructors

	/** default constructor */
	public AffixMessage() {
	}

	/** full constructor */
	public AffixMessage(AcceptFile acceptfile, String fileName, Date attachDate,
			String fileAdd) {
		this.fileName = fileName;
		this.attachDate = attachDate;
		this.fileAdd = fileAdd;
	}

	// Property accessors

	public Long getAffixId() {
		return this.affixId;
	}

	public void setAffixId(Long affixId) {
		this.affixId = affixId;
	}

	public String getFileName() {
		return this.fileName;
	}

	public void setFileName(String fileName) {
		this.fileName = fileName;
	}

	public Date getAttachDate() {
		return this.attachDate;
	}

	public void setAttachDate(Date attachDate) {
		this.attachDate = attachDate;
	}

	public String getFileAdd() {
		return this.fileAdd;
	}

	public AcceptFile getAcceptfile() {
		return acceptfile;
	}

	public void setFileAdd(String fileAdd) {
		this.fileAdd = fileAdd;
	}

	public void setAcceptfile(AcceptFile acceptfile) {
		this.acceptfile = acceptfile;
	}

}

⌨️ 快捷键说明

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