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 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 findGradeReport(ScoreBean o); List getpersonLimit(ScoreBean bean); void updateSelfRecord(ScoreBean o); ScoreBean findAllSelfGrade(ScoreBean o); List findSelfGradeReport(ScoreBean o); }