35 lines
793 B
Plaintext
35 lines
793 B
Plaintext
package com.bonus.score.service;
|
|
|
|
import java.util.List;
|
|
|
|
import com.bonus.question.beans.QuestionBean;
|
|
import com.bonus.score.beans.ScoreBean;
|
|
import com.bonus.sys.BaseService;
|
|
|
|
public interface ScoreService extends BaseService<ScoreBean> {
|
|
|
|
ScoreBean getinfoByid(String id);
|
|
|
|
Integer updateGrade(ScoreBean o);
|
|
|
|
ScoreBean findAllGrade(ScoreBean o);
|
|
|
|
String countTotalGrade(ScoreBean o);
|
|
|
|
Integer saveExamPerson(ScoreBean o);
|
|
|
|
Integer findUserByExamId(ScoreBean o);
|
|
|
|
Integer updateRegistration(ScoreBean o);
|
|
|
|
List<QuestionBean> findGradeReport(ScoreBean o);
|
|
|
|
List<ScoreBean> getpersonLimit(ScoreBean bean);
|
|
|
|
void updateSelfRecord(ScoreBean o);
|
|
|
|
ScoreBean findAllSelfGrade(ScoreBean o);
|
|
|
|
List<QuestionBean> findSelfGradeReport(ScoreBean o);
|
|
}
|