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

📄 gradeinfo.java

📁 学生信息管理系统
💻 JAVA
字号:
package com.sccp.StudentMS.VO;

public class GradeInfo {
	String id;
	String code;
	float total;
	float philosophy;
	float math;
	float english;
	float specialty;
	public GradeInfo() {
		super();
	}
	public GradeInfo(String id, String code, float total, float philosophy, float math, float english, float specialty) {
		super();
		this.id = id;
		this.code = code;
		this.total = total;
		this.philosophy = philosophy;
		this.math = math;
		this.english = english;
		this.specialty = specialty;
	}
	public String getCode() {
		return code;
	}
	public void setCode(String code) {
		this.code = code;
	}
	public float getEnglish() {
		return english;
	}
	public void setEnglish(float english) {
		this.english = english;
	}
	public String getId() {
		return id;
	}
	public void setId(String id) {
		this.id = id;
	}
	public float getMath() {
		return math;
	}
	public void setMath(float math) {
		this.math = math;
	}
	public float getPhilosophy() {
		return philosophy;
	}
	public void setPhilosophy(float philosophy) {
		this.philosophy = philosophy;
	}
	public float getSpecialty() {
		return specialty;
	}
	public void setSpecialty(float specialty) {
		this.specialty = specialty;
	}
	public float getTotal() {
		return total;
	}
	public void setTotal(float total) {
		this.total = total;
	}
	

}

⌨️ 快捷键说明

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