Browse Source

修复bug

houlai 9 months ago
parent
commit
e27d56d59c

+ 2 - 2
yudao-module-as/yudao-module-as-biz/src/main/java/cn/iocoder/yudao/module/as/service/aidingstudentscollegemanage/AidingStudentsCollegeManageServiceImpl.java

@@ -1,6 +1,6 @@
 package cn.iocoder.yudao.module.as.service.aidingstudentscollegemanage;
 
-import cn.iocoder.yudao.module.as.controller.admin.aidingstudentspersonmanage.vo.AidingStudentsPersonManageUploadRespVO;
+import cn.iocoder.yudao.module.as.controller.admin.aidingstudentspersonmanage.vo.AidingStudentPersonManageInfoRespVO;
 import cn.iocoder.yudao.module.as.dal.dataobject.aidingstudentscollegemanage.AidingStudentsCollegeManageProjectInfoPageRespDO;
 import cn.iocoder.yudao.module.as.dal.dataobject.aidingstudentsmanage.AidingStudentsManageDO;
 import cn.iocoder.yudao.module.as.dal.mysql.aidingstudentsmanage.AidingStudentsManageMapper;
@@ -185,7 +185,7 @@ public class AidingStudentsCollegeManageServiceImpl implements AidingStudentsCol
         aidingStudentsCollegeManageStudentRespVOS.forEach(aidingStudentsCollegeManageStudentRespVO -> {
             aidingStudentsCollegeManageStudentRespVO.setDiName(aidingStudentsManageMapper.selectById(aidingStudentsCollegeManageStudentRespVO.getManageId()).getDiName());
             //通过身份证查询是否存在
-            AidingStudentsPersonManageUploadRespVO aidingStudentsPersonManageUploadRespVO = aidingStudentsPersonManageService.beforeuploadAidingStudentsManage();
+            AidingStudentPersonManageInfoRespVO aidingStudentsPersonManageUploadRespVO = aidingStudentsPersonManageService.beforeuploadAidingStudentsManage();
             aidingStudentsCollegeManageStudentRespVO.setInImportList(aidingStudentsImportListService.checkStudentIDNumberExists(aidingStudentsPersonManageUploadRespVO.getIdCard(), aidingStudentsCollegeManageStudentRespVO.getManageId()));
         });