?? gradeinfo.java
字號(hào):
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;
}
}
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -