add score table

This commit is contained in:
yang-yibiao 2020-12-15 09:45:52 +08:00
parent a3f1daf409
commit 469b57fe2a
2 changed files with 81 additions and 0 deletions

View File

@ -0,0 +1,4 @@
package com.letoy.edu.dao;
public interface ScoreInfoMapper {
}

View File

@ -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;
}
}