|
|
@@ -91,7 +91,7 @@ public class WelcomeStudentServiceImpl extends ServiceImpl<WelcomeStudentMapper,
|
|
|
@Override
|
|
|
public List<StudentPageVo> queryStudentList( Integer collegeId, Integer majorId, Integer classstrId, String trafficMethod, String name) {
|
|
|
|
|
|
- List<StudentPageVo> result = welcomeStudentMapper.queryStudentList(collegeId, majorId, classstrId, trafficMethod, name);
|
|
|
+ List<StudentPageVo> result = welcomeStudentMapper.queryStudentPageList(collegeId, majorId, classstrId, trafficMethod, name);
|
|
|
return result;
|
|
|
}
|
|
|
|
|
|
@@ -147,6 +147,14 @@ public class WelcomeStudentServiceImpl extends ServiceImpl<WelcomeStudentMapper,
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
+ public int payCount() {
|
|
|
+ QueryWrapper<WelcomeStudent> wss = new QueryWrapper<>();
|
|
|
+ wss.gt("pay_amount",0);
|
|
|
+ Integer count = welcomeStudentMapper.selectCount(wss);
|
|
|
+ return count;
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
public WelcomeStudent getDataByIdcardOrNum(String admissNum, String cardId) {
|
|
|
QueryWrapper<WelcomeStudent> queryWrapper = new QueryWrapper<>();
|
|
|
queryWrapper.and(e -> e.eq(StringUtils.hasText(admissNum), "admiss_num", admissNum)
|