|
@@ -11,6 +11,7 @@ import com.zhongzheng.modules.user.bo.SubjectStudyRecordQueryBo;
|
|
import com.zhongzheng.modules.user.domain.User;
|
|
import com.zhongzheng.modules.user.domain.User;
|
|
import com.zhongzheng.modules.user.domain.UserPlan;
|
|
import com.zhongzheng.modules.user.domain.UserPlan;
|
|
import com.zhongzheng.modules.user.domain.UserStudyRecordPhoto;
|
|
import com.zhongzheng.modules.user.domain.UserStudyRecordPhoto;
|
|
|
|
+import com.zhongzheng.modules.user.mapper.UserMapper;
|
|
import com.zhongzheng.modules.user.service.IUserStudyRecordPhotoService;
|
|
import com.zhongzheng.modules.user.service.IUserStudyRecordPhotoService;
|
|
import com.zhongzheng.modules.user.service.IUserStudyRecordService;
|
|
import com.zhongzheng.modules.user.service.IUserStudyRecordService;
|
|
import com.zhongzheng.modules.user.vo.SubjectStudyRecordVo;
|
|
import com.zhongzheng.modules.user.vo.SubjectStudyRecordVo;
|
|
@@ -53,6 +54,9 @@ public class ClassGradeUserServiceImpl extends ServiceImpl<ClassGradeUserMapper,
|
|
@Autowired
|
|
@Autowired
|
|
private IUserStudyRecordPhotoService userStudyRecordPhotoService;
|
|
private IUserStudyRecordPhotoService userStudyRecordPhotoService;
|
|
|
|
|
|
|
|
+ @Autowired
|
|
|
|
+ private UserMapper userMapper;
|
|
|
|
+
|
|
@Override
|
|
@Override
|
|
public ClassGradeUserVo queryById(Long id){
|
|
public ClassGradeUserVo queryById(Long id){
|
|
ClassGradeUser db = this.baseMapper.selectById(id);
|
|
ClassGradeUser db = this.baseMapper.selectById(id);
|
|
@@ -478,6 +482,12 @@ public class ClassGradeUserServiceImpl extends ServiceImpl<ClassGradeUserMapper,
|
|
return baseMapper.sendFiveClassGradeUser();
|
|
return baseMapper.sendFiveClassGradeUser();
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ @Override
|
|
|
|
+ public Long selectList(User bo) {
|
|
|
|
+
|
|
|
|
+ return baseMapper.selectUserCount(bo);
|
|
|
|
+ }
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* 实体类转化成视图对象
|
|
* 实体类转化成视图对象
|
|
*
|
|
*
|