📄 tevaluateform.java
字号:
package edu.yinhe.mis.control;
import javax.servlet.http.HttpServletRequest;
import org.apache.struts.action.ActionErrors;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionMapping;
import org.apache.struts.upload.FormFile;
public class TevaluateForm extends ActionForm{
/**
* Method validate
* @param mapping
* @param request
* @return ActionErrors
*/
private FormFile tevaluatefile;
/**
* 教师课堂教学评估主表的听课开始日期
*/
private String startDate="";
/**
* 教师课堂教学评估主表的听课结束日期
*/
private String endDate="";
/**
* 教师课堂教学评估从表的学科
*/
private String subject;
/**
* 教师课堂教学评估从表的教师
*/
private String teacher;
/**
* 教师课堂教学评估从表的实际得分
*/
private Integer facSore;
public ActionErrors validate(ActionMapping mapping,
HttpServletRequest request) {
// TODO Auto-generated method stub
return null;
}
/**
* Method reset
* @param mapping
* @param request
*/
public void reset(ActionMapping mapping, HttpServletRequest request) {
// TODO Auto-generated method stub
}
/**
*
* @return tevaluatefile
*/
public FormFile getTevaluatefile() {
return tevaluatefile;
}
/**
*
* @param tevaluatefile
*/
public void setTevaluatefile(FormFile tevaluatefile) {
this.tevaluatefile = tevaluatefile;
}
/**
*
* @return startDate
*/
public String getStartDate() {
return startDate;
}
/**
*
* @param startDate
*/
public void setStartDate(String startDate) {
this.startDate = startDate;
}
/**
*
* @return endDate
*/
public String getEndDate() {
return endDate;
}
/**
*
* @param endDate
*/
public void setEndDate(String endDate) {
this.endDate = endDate;
}
/**
*
* @return teacher
*/
public String getTeacher() {
return teacher;
}
/**
*
* @param teacher
*/
public void setTeacher(String teacher) {
this.teacher = teacher;
}
/**
*
* @return subject
*/
public String getSubject() {
return subject;
}
/**
*
* @param subject
*/
public void setSubject(String subject) {
this.subject = subject;
}
/**
*
* @return facSore
*/
public Integer getFacSore() {
return facSore;
}
/**
*
* @param facSore
*/
public void setFacSore(Integer facSore) {
this.facSore = facSore;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -