优干提交判断1

This commit is contained in:
zhy
2025-10-15 13:02:30 +08:00
parent 4adb1b0e43
commit dda926712e

View File

@@ -541,7 +541,9 @@ public class CphGoodApplyServiceImpl extends ServiceImpl<CphGoodApplyMapper, Cph
// CphCardersStudent cphCardersStudent = new LambdaQueryChainWrapper<>(cphCardersStudentMapper) // CphCardersStudent cphCardersStudent = new LambdaQueryChainWrapper<>(cphCardersStudentMapper)
// .eq(CphCardersStudent::getStuNo, stuNo) // .eq(CphCardersStudent::getStuNo, stuNo)
// .one(); // .one();
SrsStudent srsStudent = srsStudentMapper.selectSrsStudentByStuNo(stuNo); QueryWrapper<ViewStuInfo> queryWrapper = new QueryWrapper<>();
queryWrapper.eq("stu_no",stuNo);
ViewStuInfo srsStudent = viewStuInfoMapper.selectOne(queryWrapper);
CphSearch cphSearch = new CphSearch(); CphSearch cphSearch = new CphSearch();
cphSearch.setMajorId(srsStudent.getMajorId()); cphSearch.setMajorId(srsStudent.getMajorId());