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

📄 tevaluateform.java

📁 中应用程序的访问权限对Java Web Console 中应用程序的访问权限 成功登录 Web 控制台后,可能无法自动访问在该控制台中注册的所有应用程序。通常,必须安装应用程序,才能让所有的用户在控制
💻 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 + -