📄 engageresumeform.java
字号:
package org.better.hr.web.form;
import org.apache.struts.upload.FormFile;
import org.better.hr.entity.EngageResume;
public class EngageResumeForm extends BasicForm {
/**
*
*/
private static final long serialVersionUID = 1L;
private EngageResume item;
private EngageResume 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 EngageResume getCondition() {
return condition;
}
public void setCondition(EngageResume condition) {
this.condition = condition;
}
public EngageResume getItem() {
return item;
}
public void setItem(EngageResume item) {
this.item = item;
}
public EngageResumeForm()
{
if(null == item)
this.item = new EngageResume();
if(null == condition)
this.condition = new EngageResume();
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -