Merge remote-tracking branch 'origin/zcc'

This commit is contained in:
wangjinlei
2024-06-03 10:16:31 +08:00
7 changed files with 92 additions and 9 deletions

View File

@@ -129,6 +129,8 @@ public class CourseServiceImpl extends ServiceImpl<CourseDao, CourseEntity> impl
wrapper.selectAll(CourseEntity.class);
wrapper.selectAs(CourseToMedicine::getId,"bindId");
wrapper.selectAs(CourseToMedicine::getSort,"toSociologySort");
wrapper.selectAs(CourseToMedicine::getLevel,"level");
wrapper.selectAs(CourseToMedicine::getSelective,"selective");
wrapper.leftJoin(CourseEntity.class,CourseEntity::getId, CourseToMedicine::getCourseId);
wrapper.eq(CourseToMedicine::getMedicalId,medicalId);
wrapper.orderByAsc(CourseToMedicine::getSort);