逻辑变更
This commit is contained in:
@ -34,7 +34,7 @@ public interface WgzQuestionSaveMapper extends BaseMapperPlus<WgzQuestionSave> {
|
||||
|
||||
//获取生成pdf所需要的数据
|
||||
@Select("SELECT SUM(score) FROM wgz_question_save WHERE user_id=#{userId} AND correct=1")
|
||||
double pdfSumScore (@Param("userId") Long userId);
|
||||
String pdfSumScore (@Param("userId") Long userId);
|
||||
|
||||
//
|
||||
@Select("SELECT c.question_type,c.question_text,c.OPTIONS,a.answer,c.correct_answer,a.correct,a.score,a.sign,a.id,a.pass,b.username FROM wgz_question_save AS a LEFT JOIN wgz_user AS b ON b.user_id=a.user_id LEFT JOIN wgz_question_bank AS c ON a.bank_id=c.id WHERE a.user_id=#{userId}")
|
||||
|
||||
@ -26,7 +26,11 @@ public interface WgzReissueacardMapper extends BaseMapperPlus<WgzReissueacard> {
|
||||
* @param page 分页对象
|
||||
* @return 分页查询结果
|
||||
*/
|
||||
Page<WgzReplacementCardRecordRes> userReplacementCardRecordListPage(@Param("page") Page<WgzAppReplacementCardRecordReq> page,@Param("userId") Long userId);
|
||||
Page<WgzReplacementCardRecordRes> userReplacementCardRecordListPage(
|
||||
@Param("page") Page<WgzAppReplacementCardRecordReq> page,
|
||||
@Param("userId") Long userId,
|
||||
@Param("recruitApplyId") Long recruitApplyId
|
||||
);
|
||||
|
||||
Page<BgtAuditResultVO> appQueryPageList(@Param("page") Page<BgtAuditListDTO> page, @Param("dto") BgtAuditListDTO dto);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user