Merge branch 'zcwy0704-llf' into dev0525

This commit is contained in:
zhaolongfei
2024-07-04 15:12:00 +08:00

View File

@@ -69,6 +69,9 @@ public class CourseContentServiceImpl implements ICourseContentService {
} }
ccDao.save(cc); ccDao.save(cc);
}else { }else {
if (cc.getDuration()!=null) {
cc.setDuration(cc.getDuration() * 60);
}
ccDao.update(cc); ccDao.update(cc);
cc.setSysVersion(ccDao.getVersion(cc.getId())); cc.setSysVersion(ccDao.getVersion(cc.getId()));
} }