This commit is contained in:
xzb 2022-09-27 18:01:48 +08:00
parent 91e23d36ae
commit 4301c32b49

View File

@ -187,7 +187,7 @@ public class PaperUserService {
* @param puId 用户试卷id
*/
@Transactional(readOnly = true)
private List<PaperUserQuestion> findUserSortedQuestions(Long puId) {
public List<PaperUserQuestion> findUserSortedQuestions(Long puId) {
PaperUserQuestionExample example = new PaperUserQuestionExample();
example.createCriteria().andPuIdEqualTo(puId);
List<PaperUserQuestion> findList = paperUserQuestionDAO.selectByExample(example);