增加是否收藏

beetlsql3-dev
Mlxa0324 2 years ago
parent c1f6e09233
commit 69f4dc4f81

@ -635,7 +635,7 @@ public class GeneralQuestionSettingService extends CoreBaseService<GeneralQuesti
*/
public void validateFinallySubmitThrow(Long questionSettingId, Long studentId, String throwMessage) {
boolean isZeroCount = false;
if (!ObjectUtil.isAllNotEmpty(questionSettingId, studentId)) {
if (ObjectUtil.isAllNotEmpty(questionSettingId, studentId)) {
// 查询未提交题目数量,
long notSubmitCount = generalQuestionLogDao.createLambdaQuery()
.andEq(GeneralQuestionLog::getGeneralQuestionSettingId, questionSettingId)

@ -776,7 +776,7 @@ public class TeacherOpenCourseQuestionSettingService extends CoreBaseService<Tea
*/
public void validateFinallySubmitThrow(Long questionSettingId, Long studentId, String throwMessage) {
boolean isZeroCount = false;
if (!ObjectUtil.isAllNotEmpty(questionSettingId, studentId)) {
if (ObjectUtil.isAllNotEmpty(questionSettingId, studentId)) {
// 查询未提交题目数量,
long notSubmitCount = teacherOpenCourseQuestionLogDao.createLambdaQuery()
.andEq(TeacherOpenCourseQuestionLog::getTeacherOpenCourseQuestionSettingId, questionSettingId)

Loading…
Cancel
Save