Merge remote-tracking branch 'origin/new-exam' into new-exam

pg_adapter
dshclm 9 months ago
commit 344980827a

@ -9,6 +9,7 @@ import com.ruoyi.system.service.ElUserBookService;
import org.springframework.stereotype.Component; import org.springframework.stereotype.Component;
import javax.annotation.Resource; import javax.annotation.Resource;
import java.util.Date;
import java.util.Objects; import java.util.Objects;
/** /**
@ -48,9 +49,11 @@ public class UserBookManager {
book.setWrongCount(1); book.setWrongCount(1);
Integer maxSort = this.findMaxSort(examId, ShiroUtils.getUserId()); Integer maxSort = this.findMaxSort(examId, ShiroUtils.getUserId());
book.setSort(maxSort+1); book.setSort(maxSort+1);
book.setCreateTime(new Date());
userBookService.save(book); userBookService.save(book);
} else { } else {
book.setWrongCount(book.getWrongCount()+1); book.setWrongCount(book.getWrongCount()+1);
book.setUpdateTime(new Date());
userBookService.updateById(book); userBookService.updateById(book);
} }
} }

Loading…
Cancel
Save