|
@@ -1483,8 +1483,11 @@ public class ClassGradeUserServiceImpl extends ServiceImpl<ClassGradeUserMapper,
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
- public Long selectOfficialInfoCount(ClassGradeUserQueryBo bo) {
|
|
|
- return baseMapper.selectOfficialInfoCount(bo);
|
|
|
+ public Map<String,Object> selectOfficialInfoCount(ClassGradeUserQueryBo bo) {
|
|
|
+ Map<String,Object> map = new HashMap<>();
|
|
|
+ map.put("officialInfoCount",baseMapper.selectOfficialInfoCount(bo));
|
|
|
+ map.put("learnStatus",baseMapper.selectOfficialInfoCount(bo));
|
|
|
+ return map;
|
|
|
}
|
|
|
|
|
|
@Override
|