📄 humanfileform.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 HumanFileForm extends BasicForm {
/**
*
*/
private static final long serialVersionUID = 0L;
private HumanFile item;
private HumanFile condition;
private FormFile thePhoto;
private FormFile theAttach;
private String keywords;
/**
* 构造方法
*
*/
public HumanFileForm()
{
if(null == this.item)
this.item = new HumanFile();
if(null == this.condition)
this.condition = new HumanFile();
}
public HumanFile getCondition() {
return condition;
}
public void setCondition(HumanFile condition) {
this.condition = condition;
}
public HumanFile getItem() {
return item;
}
public void setItem(HumanFile item) {
this.item = item;
}
public FormFile getThePhoto() {
return thePhoto;
}
public void setThePhoto(FormFile thePhoto) {
this.thePhoto = thePhoto;
}
public FormFile getTheAttach() {
return theAttach;
}
public void setTheAttach(FormFile theAttach) {
this.theAttach = theAttach;
}
public String getKeywords() {
return keywords;
}
public void setKeywords(String keywords) {
this.keywords = keywords;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -