|
@@ -86,10 +86,10 @@ public class ExtracurricularExercisesServiceImpl extends BaseServiceImpl<Long, E
|
|
|
@Transactional(rollbackFor = Exception.class, isolation = Isolation.READ_COMMITTED)
|
|
|
public void createExtraExercises(ExtracurricularExercises exercises) {
|
|
|
if(StringUtils.isBlank(exercises.getTitle())){
|
|
|
- throw new BizException("请填写标题");
|
|
|
+ // throw new BizException("请填写标题");
|
|
|
}
|
|
|
if(StringUtils.isBlank(exercises.getContent())){
|
|
|
- throw new BizException("请填写内容");
|
|
|
+ // throw new BizException("请填写内容");
|
|
|
}
|
|
|
List<MusicScoreSubjectDto> scoreSubjectDtoList = exercises.getMusicScoreSubjectDtos();
|
|
|
|