|
@@ -0,0 +1,105 @@
|
|
|
+package com.zhongzheng.modules.goods.service.impl;
|
|
|
+
|
|
|
+import cn.hutool.core.bean.BeanUtil;
|
|
|
+import cn.hutool.core.util.StrUtil;
|
|
|
+import com.zhongzheng.common.utils.DateUtils;
|
|
|
+import com.zhongzheng.modules.goods.bo.GoodsQuestionRelExamAddBo;
|
|
|
+import com.zhongzheng.modules.goods.bo.GoodsQuestionRelExamEditBo;
|
|
|
+import com.zhongzheng.modules.goods.bo.GoodsQuestionRelExamQueryBo;
|
|
|
+import com.zhongzheng.modules.goods.domain.GoodsQuestionRelExam;
|
|
|
+import com.zhongzheng.modules.goods.mapper.GoodsQuestionRelExamMapper;
|
|
|
+import com.zhongzheng.modules.goods.service.IGoodsQuestionRelExamService;
|
|
|
+import com.zhongzheng.modules.goods.vo.GoodsQuestionRelExamVo;
|
|
|
+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;
|
|
|
+
|
|
|
+/**
|
|
|
+ * 三方题库试卷记录Service业务层处理
|
|
|
+ *
|
|
|
+ * @author ruoyi
|
|
|
+ * @date 2023-08-14
|
|
|
+ */
|
|
|
+@Service
|
|
|
+public class GoodsQuestionRelExamServiceImpl extends ServiceImpl<GoodsQuestionRelExamMapper, GoodsQuestionRelExam> implements IGoodsQuestionRelExamService {
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public GoodsQuestionRelExamVo queryById(Long id){
|
|
|
+ GoodsQuestionRelExam db = this.baseMapper.selectById(id);
|
|
|
+ return BeanUtil.toBean(db, GoodsQuestionRelExamVo.class);
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public List<GoodsQuestionRelExamVo> queryList(GoodsQuestionRelExamQueryBo bo) {
|
|
|
+ LambdaQueryWrapper<GoodsQuestionRelExam> lqw = Wrappers.lambdaQuery();
|
|
|
+ lqw.eq(bo.getRelId() != null, GoodsQuestionRelExam::getRelId, bo.getRelId());
|
|
|
+ lqw.eq(bo.getExamId() != null, GoodsQuestionRelExam::getExamId, bo.getExamId());
|
|
|
+ lqw.eq(bo.getUserSubscribeId() != null, GoodsQuestionRelExam::getUserSubscribeId, bo.getUserSubscribeId());
|
|
|
+ lqw.eq(bo.getStatus() != null, GoodsQuestionRelExam::getStatus, bo.getStatus());
|
|
|
+ lqw.eq(bo.getUserId() != null, GoodsQuestionRelExam::getUserId, bo.getUserId());
|
|
|
+ lqw.eq(bo.getExpTime() != null, GoodsQuestionRelExam::getExpTime, bo.getExpTime());
|
|
|
+ return entity2Vo(this.list(lqw));
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 实体类转化成视图对象
|
|
|
+ *
|
|
|
+ * @param collection 实体类集合
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ private List<GoodsQuestionRelExamVo> entity2Vo(Collection<GoodsQuestionRelExam> collection) {
|
|
|
+ List<GoodsQuestionRelExamVo> voList = collection.stream()
|
|
|
+ .map(any -> BeanUtil.toBean(any, GoodsQuestionRelExamVo.class))
|
|
|
+ .collect(Collectors.toList());
|
|
|
+ if (collection instanceof Page) {
|
|
|
+ Page<GoodsQuestionRelExam> page = (Page<GoodsQuestionRelExam>)collection;
|
|
|
+ Page<GoodsQuestionRelExamVo> pageVo = new Page<>();
|
|
|
+ BeanUtil.copyProperties(page,pageVo);
|
|
|
+ pageVo.addAll(voList);
|
|
|
+ voList = pageVo;
|
|
|
+ }
|
|
|
+ return voList;
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public Boolean insertByAddBo(GoodsQuestionRelExamAddBo bo) {
|
|
|
+ GoodsQuestionRelExam add = BeanUtil.toBean(bo, GoodsQuestionRelExam.class);
|
|
|
+ validEntityBeforeSave(add);
|
|
|
+ add.setCreateTime(DateUtils.getNowTime());
|
|
|
+ add.setUpdateTime(DateUtils.getNowTime());
|
|
|
+ return this.save(add);
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public Boolean updateByEditBo(GoodsQuestionRelExamEditBo bo) {
|
|
|
+ GoodsQuestionRelExam update = BeanUtil.toBean(bo, GoodsQuestionRelExam.class);
|
|
|
+ validEntityBeforeSave(update);
|
|
|
+ update.setUpdateTime(DateUtils.getNowTime());
|
|
|
+ return this.updateById(update);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 保存前的数据校验
|
|
|
+ *
|
|
|
+ * @param entity 实体类数据
|
|
|
+ */
|
|
|
+ private void validEntityBeforeSave(GoodsQuestionRelExam entity){
|
|
|
+ //TODO 做一些数据校验,如唯一约束
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public Boolean deleteWithValidByIds(Collection<Long> ids, Boolean isValid) {
|
|
|
+ if(isValid){
|
|
|
+ //TODO 做一些业务上的校验,判断是否需要校验
|
|
|
+ }
|
|
|
+ return this.removeByIds(ids);
|
|
|
+ }
|
|
|
+}
|