|
@@ -5,9 +5,11 @@ import com.ym.mec.auth.api.entity.SysUser;
|
|
|
import com.ym.mec.common.page.PageInfo;
|
|
|
import com.ym.mec.util.collection.MapUtil;
|
|
|
import com.ym.mec.web.dal.dao.StudentManageDao;
|
|
|
+import com.ym.mec.web.dal.dao.VipGroupDao;
|
|
|
import com.ym.mec.web.dal.dto.StudentManageBaseDto;
|
|
|
import com.ym.mec.web.dal.dto.StudentManageBaseInfoOfMusicGroupDto;
|
|
|
import com.ym.mec.web.dal.dto.StudentManageListDto;
|
|
|
+import com.ym.mec.web.dal.dto.StudentManageVipGroupDto;
|
|
|
import com.ym.mec.web.dal.page.StudentManageAttendanceQueryInfo;
|
|
|
import com.ym.mec.web.dal.page.StudentManageCourseQueryInfo;
|
|
|
import com.ym.mec.web.dal.page.StudentManageQueryInfo;
|
|
@@ -31,6 +33,8 @@ public class StudentManageServiceImpl implements StudentManageService {
|
|
|
private StudentManageDao studentManageDao;
|
|
|
@Autowired
|
|
|
private SysUserFeignService sysUserFeignService;
|
|
|
+ @Autowired
|
|
|
+ private VipGroupDao vipGroupDao;
|
|
|
|
|
|
@Override
|
|
|
public PageInfo findStudentsByOrganId(StudentManageQueryInfo queryInfo) {
|
|
@@ -108,4 +112,9 @@ public class StudentManageServiceImpl implements StudentManageService {
|
|
|
pageInfo.setRows(dataList);
|
|
|
return pageInfo;
|
|
|
}
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public List<StudentManageVipGroupDto> findStudentVipGroups(Long userID) {
|
|
|
+ return vipGroupDao.findStudentVipGroups(userID);
|
|
|
+ }
|
|
|
}
|