📄 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 + -