@@ -1374,7 +1374,7 @@ public class MusicGroupServiceImpl extends BaseServiceImpl<String, MusicGroup> i
Date date = new Date();
- if (date.after(expireDate)) {
+ if (expireDate.before(date)) {
throw new BizException("日期设置错误");
}