在线管理资源完成情况修改

This commit is contained in:
zhaolongfei
2024-07-17 13:56:34 +08:00
parent d514450f23
commit 921aa5909e

View File

@@ -79,7 +79,7 @@ public class StudySignupServiceImpl implements IStudySignupService{
signupDao.save(signup);
//添加到课程学习
LocalDateTime now=LocalDateTime.now();
String sql="SELECT c.id,,c.content_name,,c.course_id from boe_course_content c " +
String sql="SELECT c.id,c.content_name,c.course_id from boe_course_content c " +
"where c.course_id = '"+signup.getCourseId()+"'";
List<CourseContent> courseContents = contentDao.sqlFindList(sql);
StudyCourse sc=new StudyCourse();