?? studentscore.java
字號:
package com.zdh.sms.model;
/**
* 學生成績
*/
public class StudentScore {
private Long id;
private Exam exam; // 考試實體
private Student student; // 學生
private float score; // 得分
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public Exam getExam() {
return exam;
}
public void setExam(Exam exam) {
this.exam = exam;
}
public Student getStudent() {
return student;
}
public void setStudent(Student student) {
this.student = student;
}
public float getScore() {
return score;
}
public void setScore(float score) {
this.score = score;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -