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

📄 coursevo.java

📁 学生信息管理系统
💻 JAVA
字号:
package vo;
import java.io.Serializable;
public class CourseVO implements Serializable
{
	private String course_id;
	private String course_name;
	private String term;
	private String examtype;
	private String total;
	private String score;
	public CourseVO()
	{
		
	}
	public CourseVO(String course_id,String course_name,String term,String examtype,String total,String score)
	{
		this.course_id=course_id;
		this.course_name=course_name;
		this.term=term;
		this.examtype=examtype;
		this.total=total;
		this.score=score;
		
	}
	public void setCourseId(String course_id)
	{
		this.course_id=course_id;
	}
	public String getCourseId()
	{
		return this.course_id;
	}
	public void setCourseName(String course_name)
	{
		this.course_name=course_name;
	}
	public String getCourseName()
	{
		return this.course_name;
	}
	public void setTerm(String term)
	{
		this.term=term;
	}
	public String getTerm()
	{
		return this.term;
	}
	public void setExamtype(String examtype)
	{
		this.examtype=examtype;
	}
	public String getExamtype()
	{
		return this.examtype;
	}
	public void setTotal(String total)
	{
		this.total=total;
	}
	public String getTotal()
	{
		return this.total;
	}
	public void setScore(String score)
	{
		this.score=score;
	}
	public String getScore()
	{
		return this.score;
	}
}

⌨️ 快捷键说明

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