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

📄 coursescoreinfobean.java

📁 在本系统中
💻 JAVA
字号:

//课程成绩信息 :学生学号、课程编号、学年、学期、成绩、教师编号、状态、备注


package jin.bean;

import java.io.Serializable;


public class CourseScoreInfoBean implements Serializable
{
	private String stuID;
	private String courseID;
	private String studyYear;
	private String studyTeam;
	private String score;
	private String teaID;
	private String state;
	private String other;	
	
	public CourseScoreInfoBean()
	{
		//this(null,null);
	}
	
	public CourseScoreInfoBean(String stuID,String courseID,String studyYear,String studyTeam,String score,String teaID,String state,String other)  //
	{
		this.stuID=stuID;
		this.courseID=courseID;
		this.studyYear=studyYear;
		this.studyTeam=studyTeam;
		this.score=score;
		this.teaID=teaID;		
		this.state=state;
		this.other=other;	
	}
	
	public void setStuID(String stuID)
	{
		this.stuID=stuID;
	}
	
	public void setCourseID(String courseID)
	{
		this.courseID=courseID;
	}
	
	public void setStudyYear(String studyYear)
	{
		this.studyYear=studyYear;
	}
	
	public void setStudyTeam(String stuyTeam)
	{
		this.studyTeam=studyTeam;
	}
	
	public void setScore(String score)
	{
		this.score=score;
	}
	
	public void setTeaID(String teaID)
	{
		this.teaID=teaID;	
	}
	public void setState(String state)
	{
		this.state=state;	
	}
	
	public void setOther(String other)
	{
		this.other=other;	
	}
	
	
	public String getStuID()
	{
		return this.stuID;
	}
	
	public String getCourseID()
	{
		return this.courseID;
	}
	
	public String getStudyYear()
	{
		return this.studyYear;
	}
	
	public String getStudyTeam()
	{
		return this.studyTeam;
	}
	public String getScore()
	{
		return this.score;
	}
	public String getTeaID()
	{
		return this.teaID;
	}
	public String getState()
	{
		return this.state;	
	}
	public String getOther()
	{
		return this.other;
	}	
}

⌨️ 快捷键说明

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