|
@@ -595,8 +595,8 @@ public class MusicGroupServiceImpl extends BaseServiceImpl<String, MusicGroup> i
|
|
|
if (isCheckStudentNum) {
|
|
|
// 查询乐团已报名人数
|
|
|
List<StudentPreRegistration> studentPreRegistrationList = studentPreRegistrationDao.queryByMusicGroupId(musicGroupId);
|
|
|
- if (studentPreRegistrationList == null || studentPreRegistrationList.size() < 120) {
|
|
|
- throw new BizException("操作失败:报名人数没有达到120人");
|
|
|
+ if (studentPreRegistrationList == null || studentPreRegistrationList.size() < 80) {
|
|
|
+ throw new BizException("操作失败:报名人数没有达到80人");
|
|
|
}
|
|
|
}
|
|
|
musicGroup.setStatus(MusicGroupStatusEnum.PRE_BUILD_FEE);
|