📄 engagesubjectsform.java
字号:
package org.better.hr.web.form;
import org.apache.struts.upload.FormFile;
import org.better.hr.entity.EngageSubjects;
import org.better.hr.entity.HumanFile;
public class EngageSubjectsForm extends BasicForm {
/**
*
*/
private static final long serialVersionUID = 0L;
private EngageSubjects item;
private EngageSubjects condition;
private EngageSubjects thePhoto;
private EngageSubjects theAttach;
public EngageSubjects getCondition() {
return condition;
}
public void setCondition(EngageSubjects condition) {
this.condition = condition;
}
public EngageSubjects getItem() {
return item;
}
public void setItem(EngageSubjects item) {
this.item = item;
}
public EngageSubjects getTheAttach() {
return theAttach;
}
public void setTheAttach(EngageSubjects theAttach) {
this.theAttach = theAttach;
}
public EngageSubjects getThePhoto() {
return thePhoto;
}
public void setThePhoto(EngageSubjects thePhoto) {
this.thePhoto = thePhoto;
}
/**
* 构造方法
*
*/
public EngageSubjectsForm()
{
if(null == this.item)
this.item = new EngageSubjects();
if(null == this.condition)
this.condition = new EngageSubjects();
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -