coursevo.java

来自「学生信息管理系统」· Java 代码 · 共 73 行

JAVA
73
字号
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 + =
减小字号Ctrl + -
显示快捷键?