|
@@ -7,6 +7,7 @@ import com.keao.edu.common.exception.BizException;
|
|
|
import com.keao.edu.common.page.PageInfo;
|
|
|
import com.keao.edu.common.page.QueryInfo;
|
|
|
import com.keao.edu.common.service.impl.BaseServiceImpl;
|
|
|
+import com.keao.edu.common.tenant.TenantContextHolder;
|
|
|
import com.keao.edu.user.dao.ExamRegistrationDao;
|
|
|
import com.keao.edu.user.dao.ExamSongDao;
|
|
|
import com.keao.edu.user.entity.ExamSong;
|
|
@@ -71,7 +72,7 @@ public class ExamSongServiceImpl extends BaseServiceImpl<Integer, ExamSong> impl
|
|
|
if(Objects.isNull(subjectId)){
|
|
|
throw new BizException("请选择专业");
|
|
|
}
|
|
|
- return examSongDao.getWithSubject(subjectId);
|
|
|
+ return examSongDao.getWithSubject(subjectId, TenantContextHolder.getTenantId());
|
|
|
}
|
|
|
|
|
|
@Override
|