|
@@ -77,6 +77,7 @@ import com.zhongzheng.modules.user.mapper.UserStudyRecordPhotoMapper;
|
|
|
import com.zhongzheng.modules.user.service.*;
|
|
|
import com.zhongzheng.modules.user.vo.*;
|
|
|
import org.apache.commons.lang3.StringUtils;
|
|
|
+import org.apache.ibatis.annotations.Param;
|
|
|
import org.slf4j.Logger;
|
|
|
import org.slf4j.LoggerFactory;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
@@ -3640,6 +3641,19 @@ public class ClassGradeUserServiceImpl extends ServiceImpl<ClassGradeUserMapper,
|
|
|
return newList;
|
|
|
}
|
|
|
|
|
|
+ @Override
|
|
|
+ public List<ClassGradeUserGoodsVo> checkTenClassGradeUser(ClassGradeUserQueryBo bo) {
|
|
|
+ List<ClassGradeUserGoodsVo> list = baseMapper.checkTenClassGradeUser(bo.getUserId());
|
|
|
+ List<ClassGradeUserGoodsVo> list1 = new ArrayList<>();
|
|
|
+ for(ClassGradeUserGoodsVo vo : list){
|
|
|
+ String businessName = iGoodsService.getGoodsBusinessName(vo.getGoodsId());
|
|
|
+ if (businessName.contains("继续教育二级建造师") ){
|
|
|
+ list1.add(vo);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return list1;
|
|
|
+ }
|
|
|
+
|
|
|
@Override
|
|
|
public List<ClassGradeUserGoodsVo> sendFiveClassGradeUser() {
|
|
|
List<ClassGradeUserGoodsVo> userList = baseMapper.sendFiveClassGradeUser();
|