|
@@ -21,7 +21,7 @@ public class StudentScoreDetailDto {
|
|
|
private String className;
|
|
|
private String objectiveScore;
|
|
|
private String subjectiveScore;
|
|
|
- private String totalScoreString;
|
|
|
+ private String totalScore;
|
|
|
private String subjectiveScoreList;
|
|
|
private String checkUserId;
|
|
|
private String checkUserLoginName;
|
|
@@ -125,12 +125,12 @@ public class StudentScoreDetailDto {
|
|
|
this.subjectiveScore = subjectiveScore;
|
|
|
}
|
|
|
|
|
|
- public String getTotalScoreString() {
|
|
|
- return totalScoreString;
|
|
|
+ public String getTotalScore() {
|
|
|
+ return totalScore;
|
|
|
}
|
|
|
|
|
|
- public void setTotalScoreString(String totalScoreString) {
|
|
|
- this.totalScoreString = totalScoreString;
|
|
|
+ public void setTotalScore(String totalScore) {
|
|
|
+ this.totalScore = totalScore;
|
|
|
}
|
|
|
|
|
|
public String getSubjectiveScoreList() {
|