|
|
@ -9,6 +9,7 @@ import com.ruoyi.system.domain.userbook.dto.UserBookDTO;
|
|
|
|
import com.ruoyi.system.service.ElQuService;
|
|
|
|
import com.ruoyi.system.service.ElQuService;
|
|
|
|
import com.ruoyi.system.service.ElUserBookService;
|
|
|
|
import com.ruoyi.system.service.ElUserBookService;
|
|
|
|
import org.springframework.stereotype.Component;
|
|
|
|
import org.springframework.stereotype.Component;
|
|
|
|
|
|
|
|
import org.springframework.util.StringUtils;
|
|
|
|
|
|
|
|
|
|
|
|
import javax.annotation.Resource;
|
|
|
|
import javax.annotation.Resource;
|
|
|
|
import java.util.Date;
|
|
|
|
import java.util.Date;
|
|
|
@ -96,6 +97,34 @@ public class UserBookManager {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public String findNext(String examId, String quId) {
|
|
|
|
|
|
|
|
Integer sort = 999999;
|
|
|
|
|
|
|
|
if(Objects.nonNull(quId)){
|
|
|
|
|
|
|
|
QueryWrapper<ElUserBook> wrapper = new QueryWrapper<>();
|
|
|
|
|
|
|
|
wrapper.lambda()
|
|
|
|
|
|
|
|
.eq(ElUserBook::getUserId, ShiroUtils.getUserId())
|
|
|
|
|
|
|
|
.eq(ElUserBook::getExamId, examId)
|
|
|
|
|
|
|
|
.eq(ElUserBook::getQuId, quId);
|
|
|
|
|
|
|
|
wrapper.last(" ORDER BY `sort` DESC");
|
|
|
|
|
|
|
|
ElUserBook last = userBookService.getOne(wrapper, false);
|
|
|
|
|
|
|
|
if(last!=null){
|
|
|
|
|
|
|
|
sort = last.getSort();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
QueryWrapper<ElUserBook> wrapper = new QueryWrapper<>();
|
|
|
|
|
|
|
|
wrapper.lambda()
|
|
|
|
|
|
|
|
.eq(ElUserBook::getUserId, ShiroUtils.getUserId())
|
|
|
|
|
|
|
|
.eq(ElUserBook::getExamId, examId)
|
|
|
|
|
|
|
|
.lt(ElUserBook::getSort, sort);
|
|
|
|
|
|
|
|
wrapper.last(" ORDER BY `sort` DESC");
|
|
|
|
|
|
|
|
ElUserBook next = userBookService.getOne(wrapper, false);
|
|
|
|
|
|
|
|
if(next != null){
|
|
|
|
|
|
|
|
return next.getQuId();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|