|
@@ -43,6 +43,7 @@ public class CourseFileServiceImpl extends ServiceImpl<CourseFileMapper, CourseF
|
|
lqw.eq(bo.getStatus() != null, CourseFile::getStatus, bo.getStatus());
|
|
lqw.eq(bo.getStatus() != null, CourseFile::getStatus, bo.getStatus());
|
|
lqw.eq(bo.getHandoutsId() != null, CourseFile::getHandoutsId, bo.getHandoutsId());
|
|
lqw.eq(bo.getHandoutsId() != null, CourseFile::getHandoutsId, bo.getHandoutsId());
|
|
lqw.eq(bo.getSort() != null, CourseFile::getSort, bo.getSort());
|
|
lqw.eq(bo.getSort() != null, CourseFile::getSort, bo.getSort());
|
|
|
|
+ lqw.orderByAsc(CourseFile::getSort);
|
|
return entity2Vo(this.list(lqw));
|
|
return entity2Vo(this.list(lqw));
|
|
}
|
|
}
|
|
|
|
|