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

📄 courceform.java

📁 学生选课 用java和sql server 2000用asp完成的学生选课管理系统
💻 JAVA
字号:
/*
 * Generated by MyEclipse Struts
 * Template path: templates/java/JavaClass.vtl
 */
package com.xuanke.actionform;


import javax.servlet.http.HttpServletRequest;
import org.apache.struts.action.ActionErrors;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionMapping;

/** 
 * MyEclipse Struts
 * Creation date: 01-01-2008
 * 
 * XDoclet definition:
 * @struts.form name="courceForm"
 */
public class CourceForm extends ActionForm {
	/*
	 * Generated fields
	 */

	/**
	 * 
	 */
	private static final long serialVersionUID = 1L;

	/** time property */
	private String time;

	/** jiaoshi property */
	private String jiaoshi;

	/** teacher property */
	private String teacher;

	/** scroe property */
	private Float scroe;

	/** coursename property */
	private String coursename;

	/*
	 * Generated Methods
	 */

	/** 
	 * Method validate
	 * @param mapping
	 * @param request
	 * @return ActionErrors
	 */
	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
	}

	/** 
	 * Returns the time.
	 * @return Date
	 */
	public String getTime() {
		return time;
	}

	/** 
	 * Set the time.
	 * @param time The time to set
	 */
	public void setTime(String time) {
		this.time = time;
	}

	/** 
	 * Returns the jiaoshi.
	 * @return String
	 */
	public String getJiaoshi() {
		return jiaoshi;
	}

	/** 
	 * Set the jiaoshi.
	 * @param jiaoshi The jiaoshi to set
	 */
	public void setJiaoshi(String jiaoshi) {
		this.jiaoshi = jiaoshi;
	}

	/** 
	 * Returns the teacher.
	 * @return String
	 */
	public String getTeacher() {
		return teacher;
	}

	/** 
	 * Set the teacher.
	 * @param teacher The teacher to set
	 */
	public void setTeacher(String teacher) {
		this.teacher = teacher;
	}

	/** 
	 * Returns the scroe.
	 * @return Float
	 */
	public Float getScroe() {
		return scroe;
	}

	/** 
	 * Set the scroe.
	 * @param scroe The scroe to set
	 */
	public void setScroe(Float scroe) {
		this.scroe = scroe;
	}

	/** 
	 * Returns the coursename.
	 * @return String
	 */
	public String getCoursename() {
		return coursename;
	}

	/** 
	 * Set the coursename.
	 * @param coursename The coursename to set
	 */
	public void setCoursename(String coursename) {
		this.coursename = coursename;
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -