add score table
This commit is contained in:
parent
a3f1daf409
commit
469b57fe2a
|
@ -0,0 +1,4 @@
|
|||
package com.letoy.edu.dao;
|
||||
|
||||
public interface ScoreInfoMapper {
|
||||
}
|
|
@ -0,0 +1,77 @@
|
|||
package com.letoy.edu.entity;
|
||||
|
||||
|
||||
public class ScoreInfo {
|
||||
|
||||
private long scoreId;
|
||||
private long studentId;
|
||||
private long lessonId;
|
||||
private long term;
|
||||
private long year;
|
||||
private long examScore;
|
||||
private long finalScore;
|
||||
|
||||
|
||||
public long getScoreId() {
|
||||
return scoreId;
|
||||
}
|
||||
|
||||
public void setScoreId(long scoreId) {
|
||||
this.scoreId = scoreId;
|
||||
}
|
||||
|
||||
|
||||
public long getStudentId() {
|
||||
return studentId;
|
||||
}
|
||||
|
||||
public void setStudentId(long studentId) {
|
||||
this.studentId = studentId;
|
||||
}
|
||||
|
||||
|
||||
public long getLessonId() {
|
||||
return lessonId;
|
||||
}
|
||||
|
||||
public void setLessonId(long lessonId) {
|
||||
this.lessonId = lessonId;
|
||||
}
|
||||
|
||||
|
||||
public long getTerm() {
|
||||
return term;
|
||||
}
|
||||
|
||||
public void setTerm(long term) {
|
||||
this.term = term;
|
||||
}
|
||||
|
||||
|
||||
public long getYear() {
|
||||
return year;
|
||||
}
|
||||
|
||||
public void setYear(long year) {
|
||||
this.year = year;
|
||||
}
|
||||
|
||||
|
||||
public long getExamScore() {
|
||||
return examScore;
|
||||
}
|
||||
|
||||
public void setExamScore(long examScore) {
|
||||
this.examScore = examScore;
|
||||
}
|
||||
|
||||
|
||||
public long getFinalScore() {
|
||||
return finalScore;
|
||||
}
|
||||
|
||||
public void setFinalScore(long finalScore) {
|
||||
this.finalScore = finalScore;
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue