VodSubjectTreeMappingServiceImpl.java
2.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
package com.meishu.service.impl;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.meishu.dto.subject.BatchStatusOprDTO;
import com.meishu.dto.subject.GetAllVodsStatusDTO;
import com.meishu.mapper.VodDictMapper;
import com.meishu.model.VodSubjectTreeMappingDO;
import com.meishu.mapper.VodSubjectTreeMappingMapper;
import com.meishu.service.VodSubjectTreeMappingService;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.meishu.util.ConstantUtils;
import com.meishu.vo.subject.GetAllNoAuthenVodsVO;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.util.List;
/**
* <p>
* 视频知识点映射表 服务实现类
* </p>
*
* @author Tuyp
* @since 2021-04-27
*/
@Service
public class VodSubjectTreeMappingServiceImpl extends ServiceImpl<VodSubjectTreeMappingMapper, VodSubjectTreeMappingDO> implements VodSubjectTreeMappingService {
@Autowired
private VodDictMapper vodDictMapper;
public IPage<GetAllNoAuthenVodsVO> getAllNoAuthenVods(GetAllVodsStatusDTO getAllNoAuthenVodsDTO){
Page pager = new Page(getAllNoAuthenVodsDTO.getPageNum(), getAllNoAuthenVodsDTO.getPageSize());
IPage<GetAllNoAuthenVodsVO> getAllNoAuthenVodsVOIPage = this.baseMapper.getAllNoAuthenVods(pager,getAllNoAuthenVodsDTO.getTreeId(),getAllNoAuthenVodsDTO.getStatus(),getAllNoAuthenVodsDTO.getVodType());
List<GetAllNoAuthenVodsVO> getAllNoAuthenVodsVOS = getAllNoAuthenVodsVOIPage.getRecords();
for (GetAllNoAuthenVodsVO getAllNoAuthenVodsVO : getAllNoAuthenVodsVOS){
getAllNoAuthenVodsVO.setSubjectTreeDOS(vodDictMapper.getVodTrees(getAllNoAuthenVodsVO.getId()));
}
return getAllNoAuthenVodsVOIPage;
}
public String batchStatusOpr(BatchStatusOprDTO batchStatusOprDTO){
List<Long> ids = batchStatusOprDTO.getIds();
for (Long lg : ids){
vodDictMapper.updateStatus(lg,batchStatusOprDTO.getStatus());
}
return ConstantUtils.SET_SUCCESS;
}
}