|
@@ -10,8 +10,10 @@ import com.xjrsoft.common.enums.GenderDictionaryEnum;
|
|
|
import com.xjrsoft.common.enums.StudyStatusEnum;
|
|
|
import com.xjrsoft.module.base.entity.BaseClass;
|
|
|
import com.xjrsoft.module.base.mapper.BaseClassMapper;
|
|
|
+import com.xjrsoft.module.organization.mapper.UserMapper;
|
|
|
import com.xjrsoft.module.room.mapper.RoomBedMapper;
|
|
|
import com.xjrsoft.module.room.vo.RoomBedInfoVo;
|
|
|
+import com.xjrsoft.module.student.dto.BaseStudentSimpleInfoDto;
|
|
|
import com.xjrsoft.module.student.dto.BaseStudentInfoDetailDto;
|
|
|
import com.xjrsoft.module.student.dto.BaseStudentInfoPageDto;
|
|
|
import com.xjrsoft.module.student.dto.PbVXsxxsfytbDto;
|
|
@@ -25,6 +27,7 @@ import com.xjrsoft.module.student.vo.BaseStudentInfoCategoryVo;
|
|
|
import com.xjrsoft.module.student.vo.BaseStudentInfoDetailVo;
|
|
|
import com.xjrsoft.module.student.vo.BaseStudentInfoPageDataVo;
|
|
|
import com.xjrsoft.module.student.vo.BaseStudentInfoPageVo;
|
|
|
+import com.xjrsoft.module.student.vo.BaseStudentSompleInfoVo;
|
|
|
import com.xjrsoft.module.student.vo.MobileClassStatisticsVo;
|
|
|
import com.xjrsoft.module.student.vo.PbVXsxxsfytbVo;
|
|
|
import lombok.AllArgsConstructor;
|
|
@@ -50,6 +53,7 @@ public class BaseStudentSchoolRollServiceImpl extends MPJBaseServiceImpl<BaseStu
|
|
|
private final BaseClassMapper baseClassMapper;
|
|
|
private final PbSemesterConfigMapper pbSemesterConfigMapper;
|
|
|
private final PbVXsxxsfytbMapper pbVXsxxsfytbMapper;
|
|
|
+ private final UserMapper userMapper;
|
|
|
|
|
|
|
|
|
@Override
|
|
@@ -197,4 +201,10 @@ public class BaseStudentSchoolRollServiceImpl extends MPJBaseServiceImpl<BaseStu
|
|
|
public Boolean updateStudentClass(Long classId, Long userId) {
|
|
|
return baseStudentSchoolRollMapper.updateStudentClass(classId, userId);
|
|
|
}
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public List<BaseStudentSompleInfoVo> getInfosByParam(BaseStudentSimpleInfoDto dto) {
|
|
|
+ List<BaseStudentSompleInfoVo> userList = userMapper.getInfosByParam(dto);
|
|
|
+ return userList;
|
|
|
+ }
|
|
|
}
|