38 lines
875 B
Plaintext
38 lines
875 B
Plaintext
|
|
package com.bonus.score.dao;
|
||
|
|
|
||
|
|
import java.util.List;
|
||
|
|
|
||
|
|
import com.bonus.core.BonusBatis;
|
||
|
|
import com.bonus.question.beans.QuestionBean;
|
||
|
|
import com.bonus.score.beans.ScoreBean;
|
||
|
|
import com.bonus.sys.BaseDao;
|
||
|
|
@BonusBatis
|
||
|
|
public interface ScoreDao extends BaseDao<ScoreBean> {
|
||
|
|
|
||
|
|
ScoreBean getinfoByid(String id);
|
||
|
|
|
||
|
|
Integer updateGrade(ScoreBean o);
|
||
|
|
|
||
|
|
ScoreBean findAllGrade(ScoreBean o);
|
||
|
|
|
||
|
|
String countTotalGrade(ScoreBean o);
|
||
|
|
|
||
|
|
Integer saveExamPerson(ScoreBean o);
|
||
|
|
|
||
|
|
Integer updateRegistration(ScoreBean o);
|
||
|
|
|
||
|
|
List<ScoreBean> findUserByExamId(ScoreBean o);
|
||
|
|
|
||
|
|
List<QuestionBean> findGradeReport(ScoreBean o);
|
||
|
|
|
||
|
|
List<ScoreBean> getpersonLimit(ScoreBean bean);
|
||
|
|
|
||
|
|
int insertSelfRecord(ScoreBean score);
|
||
|
|
|
||
|
|
void updateSelfRecord(ScoreBean o);
|
||
|
|
|
||
|
|
ScoreBean findAllSelfGrade(ScoreBean o);
|
||
|
|
|
||
|
|
List<QuestionBean> findSelfGradeReport(ScoreBean o);
|
||
|
|
}
|