|
|
@@ -0,0 +1,112 @@
|
|
|
+package com.zhongzheng.modules.file.service.impl;
|
|
|
+
|
|
|
+import cn.hutool.core.bean.BeanUtil;
|
|
|
+import cn.hutool.core.util.StrUtil;
|
|
|
+import com.zhongzheng.common.exception.CustomException;
|
|
|
+import com.zhongzheng.common.utils.DateUtils;
|
|
|
+import com.zhongzheng.modules.file.bo.PdfFileAddBo;
|
|
|
+import com.zhongzheng.modules.file.bo.PdfFileEditBo;
|
|
|
+import com.zhongzheng.modules.file.bo.PdfFileQueryBo;
|
|
|
+import com.zhongzheng.modules.file.domain.PdfFile;
|
|
|
+import com.zhongzheng.modules.file.mapper.PdfFileMapper;
|
|
|
+import com.zhongzheng.modules.file.service.IPdfFileService;
|
|
|
+import com.zhongzheng.modules.file.vo.PdfFileVo;
|
|
|
+import org.springframework.stereotype.Service;
|
|
|
+import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
|
+import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
|
|
|
+import com.baomidou.mybatisplus.core.toolkit.Wrappers;
|
|
|
+import com.github.pagehelper.Page;
|
|
|
+
|
|
|
+import java.util.Collection;
|
|
|
+import java.util.Collections;
|
|
|
+import java.util.List;
|
|
|
+import java.util.stream.Collectors;
|
|
|
+
|
|
|
+/**
|
|
|
+ * pdf 文件Service业务层处理
|
|
|
+ *
|
|
|
+ * @author hjl
|
|
|
+ * @date 2021-05-19
|
|
|
+ */
|
|
|
+@Service
|
|
|
+public class PdfFileServiceImpl extends ServiceImpl<PdfFileMapper, PdfFile> implements IPdfFileService {
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public PdfFileVo queryById(Long fileId){
|
|
|
+ PdfFile db = this.baseMapper.selectById(fileId);
|
|
|
+ return BeanUtil.toBean(db, PdfFileVo.class);
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public List<PdfFileVo> queryList(PdfFileQueryBo bo) {
|
|
|
+ LambdaQueryWrapper<PdfFile> lqw = Wrappers.lambdaQuery();
|
|
|
+ lqw.eq(bo.getCategoryId() != null, PdfFile::getCategoryId, bo.getCategoryId());
|
|
|
+ lqw.like(StrUtil.isNotBlank(bo.getFileName()), PdfFile::getFileName, bo.getFileName());
|
|
|
+ lqw.eq(StrUtil.isNotBlank(bo.getTeacherIds()), PdfFile::getTeacherIds, bo.getTeacherIds());
|
|
|
+ lqw.eq(bo.getPrice() != null, PdfFile::getPrice, bo.getPrice());
|
|
|
+ lqw.eq(bo.getStartTime() != null, PdfFile::getStartTime, bo.getStartTime());
|
|
|
+ lqw.eq(bo.getEndTime() != null, PdfFile::getEndTime, bo.getEndTime());
|
|
|
+ lqw.eq(StrUtil.isNotBlank(bo.getCoverUrl()), PdfFile::getCoverUrl, bo.getCoverUrl());
|
|
|
+ lqw.eq(StrUtil.isNotBlank(bo.getIntroduction()), PdfFile::getIntroduction, bo.getIntroduction());
|
|
|
+ lqw.eq(bo.getStatus() != null, PdfFile::getStatus, bo.getStatus());
|
|
|
+ lqw.eq(StrUtil.isNotBlank(bo.getFileUrl()), PdfFile::getFileUrl, bo.getFileUrl());
|
|
|
+ return entity2Vo(this.list(lqw));
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 实体类转化成视图对象
|
|
|
+ *
|
|
|
+ * @param collection 实体类集合
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ private List<PdfFileVo> entity2Vo(Collection<PdfFile> collection) {
|
|
|
+ List<PdfFileVo> voList = collection.stream()
|
|
|
+ .map(any -> BeanUtil.toBean(any, PdfFileVo.class))
|
|
|
+ .collect(Collectors.toList());
|
|
|
+ if (collection instanceof Page) {
|
|
|
+ Page<PdfFile> page = (Page<PdfFile>)collection;
|
|
|
+ Page<PdfFileVo> pageVo = new Page<>();
|
|
|
+ BeanUtil.copyProperties(page,pageVo);
|
|
|
+ pageVo.addAll(voList);
|
|
|
+ voList = pageVo;
|
|
|
+ }
|
|
|
+ return voList;
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public Boolean insertByAddBo(PdfFileAddBo bo) {
|
|
|
+ PdfFile add = BeanUtil.toBean(bo, PdfFile.class);
|
|
|
+ validEntityBeforeSave(add);
|
|
|
+ add.setCreateTime(DateUtils.getNowTime());
|
|
|
+ add.setUpdateTime(DateUtils.getNowTime());
|
|
|
+ return this.save(add);
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public Boolean updateByEditBo(PdfFileEditBo bo) {
|
|
|
+ PdfFile update = BeanUtil.toBean(bo, PdfFile.class);
|
|
|
+ validEntityBeforeSave(update);
|
|
|
+ update.setUpdateTime(DateUtils.getNowTime());
|
|
|
+ return this.updateById(update);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 保存前的数据校验
|
|
|
+ *
|
|
|
+ * @param entity 实体类数据
|
|
|
+ */
|
|
|
+ private void validEntityBeforeSave(PdfFile entity){
|
|
|
+ //TODO 做一些数据校验,如唯一约束
|
|
|
+ if(entity.getEndTime()<entity.getStartTime()){
|
|
|
+ throw new CustomException("结束时间须大于开始时间");
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public Boolean deleteWithValidByIds(Collection<Long> ids, Boolean isValid) {
|
|
|
+ if(isValid){
|
|
|
+ //TODO 做一些业务上的校验,判断是否需要校验
|
|
|
+ }
|
|
|
+ return this.removeByIds(ids);
|
|
|
+ }
|
|
|
+}
|