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

📄 engageinterviewform.java

📁 hr伯乐管理系统!非常适合java学员做学习参考用!是用集成框架开发的Struts+hrbernet+Spring 开发的
💻 JAVA
字号:
package org.better.hr.web.form;

import org.apache.struts.upload.FormFile;
import org.better.hr.entity.EngageInterview;

public class EngageInterviewForm extends BasicForm {

	/**
	 * 
	 */
	private static final long serialVersionUID = 1L;
	
	private EngageInterview item;
	private EngageInterview condition;

	private FormFile thePhoto;
	private FormFile theAttach;

	public FormFile getTheAttach() {
		return theAttach;
	}

	public void setTheAttach(FormFile theAttach) {
		this.theAttach = theAttach;
	}

	public FormFile getThePhoto() {
		return thePhoto;
	}

	public void setThePhoto(FormFile thePhoto) {
		this.thePhoto = thePhoto;
	}

	public EngageInterview getCondition() {
		return condition;
	}

	public void setCondition(EngageInterview condition) {
		this.condition = condition;
	}

	public EngageInterview getItem() {
		return item;
	}

	public void setItem(EngageInterview item) {
		this.item = item;
	}

	public EngageInterviewForm()
	{
		if(null == item)
			this.item = new EngageInterview();
		if(null == condition)
			this.condition = new EngageInterview();
	}
	
	
}

⌨️ 快捷键说明

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