|
@@ -7,6 +7,7 @@ import cn.iselab.mooctest.site.service.GeneralCalculateScoreService;
|
|
|
import cn.iselab.mooctest.site.service.UserCatchService;
|
|
|
import cn.iselab.mooctest.site.service.WeightGeneralService;
|
|
|
import cn.iselab.mooctest.site.web.logic.GeneralCalculateScoreLogic;
|
|
|
+import cn.iselab.mooctest.site.web.logic.strategy.TypeScoreStrategy;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
|
@@ -42,4 +43,21 @@ public class GeneralCalculateScoreLogicImpl implements GeneralCalculateScoreLogi
|
|
|
generalCalculateScoreComponent.calculateGrade(taskId,caseId,userId);
|
|
|
}
|
|
|
|
|
|
+ @Override
|
|
|
+ public void recordTypeScore(long examId, long caseId, Long userId, String uploadTime) {
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public void calculateCaseScore(long examId, long caseId, Long userId,
|
|
|
+ TypeScoreStrategy strategy) {
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public void calculateCaseScore(long examId, long caseId, TypeScoreStrategy strategy) {
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
}
|