|
@@ -2,14 +2,20 @@ package com.zhongzheng.modules.course.service.impl;
|
|
|
|
|
|
|
|
import cn.hutool.core.bean.BeanUtil;
|
|
import cn.hutool.core.bean.BeanUtil;
|
|
|
import cn.hutool.core.util.StrUtil;
|
|
import cn.hutool.core.util.StrUtil;
|
|
|
|
|
+import com.baomidou.mybatisplus.core.toolkit.StringUtils;
|
|
|
|
|
+import com.zhongzheng.common.exception.CustomException;
|
|
|
import com.zhongzheng.common.utils.DateUtils;
|
|
import com.zhongzheng.common.utils.DateUtils;
|
|
|
import com.zhongzheng.modules.course.bo.CourseSectionAddBo;
|
|
import com.zhongzheng.modules.course.bo.CourseSectionAddBo;
|
|
|
import com.zhongzheng.modules.course.bo.CourseSectionEditBo;
|
|
import com.zhongzheng.modules.course.bo.CourseSectionEditBo;
|
|
|
import com.zhongzheng.modules.course.bo.CourseSectionQueryBo;
|
|
import com.zhongzheng.modules.course.bo.CourseSectionQueryBo;
|
|
|
import com.zhongzheng.modules.course.domain.CourseSection;
|
|
import com.zhongzheng.modules.course.domain.CourseSection;
|
|
|
|
|
+import com.zhongzheng.modules.course.mapper.CourseMapper;
|
|
|
import com.zhongzheng.modules.course.mapper.CourseSectionMapper;
|
|
import com.zhongzheng.modules.course.mapper.CourseSectionMapper;
|
|
|
import com.zhongzheng.modules.course.service.ICourseSectionService;
|
|
import com.zhongzheng.modules.course.service.ICourseSectionService;
|
|
|
import com.zhongzheng.modules.course.vo.CourseSectionVo;
|
|
import com.zhongzheng.modules.course.vo.CourseSectionVo;
|
|
|
|
|
+import com.zhongzheng.modules.polyv.service.IPolyvVideoService;
|
|
|
|
|
+import com.zhongzheng.modules.polyv.vo.PolyvVideoQuerVo;
|
|
|
|
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.stereotype.Service;
|
|
import org.springframework.stereotype.Service;
|
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
|
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
|
|
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
|
|
@@ -30,6 +36,12 @@ import java.util.stream.Collectors;
|
|
|
@Service
|
|
@Service
|
|
|
public class CourseSectionServiceImpl extends ServiceImpl<CourseSectionMapper, CourseSection> implements ICourseSectionService {
|
|
public class CourseSectionServiceImpl extends ServiceImpl<CourseSectionMapper, CourseSection> implements ICourseSectionService {
|
|
|
|
|
|
|
|
|
|
+ @Autowired
|
|
|
|
|
+ private IPolyvVideoService iPolyvVideoService;
|
|
|
|
|
+
|
|
|
|
|
+ @Autowired
|
|
|
|
|
+ private CourseSectionMapper courseSectionMapper;
|
|
|
|
|
+
|
|
|
@Override
|
|
@Override
|
|
|
public CourseSectionVo queryById(Long sectionId){
|
|
public CourseSectionVo queryById(Long sectionId){
|
|
|
CourseSection db = this.baseMapper.selectById(sectionId);
|
|
CourseSection db = this.baseMapper.selectById(sectionId);
|
|
@@ -47,6 +59,11 @@ public class CourseSectionServiceImpl extends ServiceImpl<CourseSectionMapper, C
|
|
|
return entity2Vo(this.list(lqw));
|
|
return entity2Vo(this.list(lqw));
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+ @Override
|
|
|
|
|
+ public List<CourseSectionVo> selectList(CourseSectionQueryBo bo) {
|
|
|
|
|
+ return courseSectionMapper.selectCourseSectionList(bo);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
/**
|
|
/**
|
|
|
* 实体类转化成视图对象
|
|
* 实体类转化成视图对象
|
|
|
*
|
|
*
|
|
@@ -89,8 +106,21 @@ public class CourseSectionServiceImpl extends ServiceImpl<CourseSectionMapper, C
|
|
|
*
|
|
*
|
|
|
* @param entity 实体类数据
|
|
* @param entity 实体类数据
|
|
|
*/
|
|
*/
|
|
|
- private void validEntityBeforeSave(CourseSection entity){
|
|
|
|
|
|
|
+ private void validEntityBeforeSave(CourseSection entity) {
|
|
|
//TODO 做一些数据校验,如唯一约束
|
|
//TODO 做一些数据校验,如唯一约束
|
|
|
|
|
+ if(StringUtils.isNotBlank(entity.getVid())){
|
|
|
|
|
+ try{
|
|
|
|
|
+ PolyvVideoQuerVo polyvVideo = iPolyvVideoService.queryById(entity.getVid());
|
|
|
|
|
+ if(polyvVideo == null){
|
|
|
|
|
+ throw new CustomException("保利威视频不存在");
|
|
|
|
|
+ }
|
|
|
|
|
+ entity.setPolyvId(polyvVideo.getPolyvId());
|
|
|
|
|
+ }catch (Exception e){
|
|
|
|
|
+ throw new CustomException("保利威视频错误");
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
@Override
|