|
@@ -0,0 +1,100 @@
|
|
|
+package com.zhongzheng.modules.bank.service.impl;
|
|
|
+
|
|
|
+import cn.hutool.core.bean.BeanUtil;
|
|
|
+import cn.hutool.core.util.StrUtil;
|
|
|
+import com.zhongzheng.common.utils.DateUtils;
|
|
|
+import com.zhongzheng.modules.bank.bo.QuestionChapterBusinessAddBo;
|
|
|
+import com.zhongzheng.modules.bank.bo.QuestionChapterBusinessEditBo;
|
|
|
+import com.zhongzheng.modules.bank.bo.QuestionChapterBusinessQueryBo;
|
|
|
+import com.zhongzheng.modules.bank.domain.QuestionChapterBusiness;
|
|
|
+import com.zhongzheng.modules.bank.mapper.QuestionChapterBusinessMapper;
|
|
|
+import com.zhongzheng.modules.bank.service.IQuestionChapterBusinessService;
|
|
|
+import com.zhongzheng.modules.bank.vo.QuestionChapterBusinessVo;
|
|
|
+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 hjl
|
|
|
+ * @date 2021-10-25
|
|
|
+ */
|
|
|
+@Service
|
|
|
+public class QuestionChapterBusinessServiceImpl extends ServiceImpl<QuestionChapterBusinessMapper, QuestionChapterBusiness> implements IQuestionChapterBusinessService {
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public QuestionChapterBusinessVo queryById(Long id){
|
|
|
+ QuestionChapterBusiness db = this.baseMapper.selectById(id);
|
|
|
+ return BeanUtil.toBean(db, QuestionChapterBusinessVo.class);
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public List<QuestionChapterBusinessVo> queryList(QuestionChapterBusinessQueryBo bo) {
|
|
|
+ LambdaQueryWrapper<QuestionChapterBusiness> lqw = Wrappers.lambdaQuery();
|
|
|
+ lqw.eq(bo.getEducationTypeId() != null, QuestionChapterBusiness::getEducationTypeId, bo.getEducationTypeId());
|
|
|
+ lqw.eq(bo.getBusinessId() != null, QuestionChapterBusiness::getBusinessId, bo.getBusinessId());
|
|
|
+ lqw.eq(bo.getProjectId() != null, QuestionChapterBusiness::getProjectId, bo.getProjectId());
|
|
|
+ lqw.eq(bo.getSubjectId() != null, QuestionChapterBusiness::getSubjectId, bo.getSubjectId());
|
|
|
+ lqw.eq(bo.getChapterExamId() != null, QuestionChapterBusiness::getChapterExamId, bo.getChapterExamId());
|
|
|
+ return entity2Vo(this.list(lqw));
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 实体类转化成视图对象
|
|
|
+ *
|
|
|
+ * @param collection 实体类集合
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ private List<QuestionChapterBusinessVo> entity2Vo(Collection<QuestionChapterBusiness> collection) {
|
|
|
+ List<QuestionChapterBusinessVo> voList = collection.stream()
|
|
|
+ .map(any -> BeanUtil.toBean(any, QuestionChapterBusinessVo.class))
|
|
|
+ .collect(Collectors.toList());
|
|
|
+ if (collection instanceof Page) {
|
|
|
+ Page<QuestionChapterBusiness> page = (Page<QuestionChapterBusiness>)collection;
|
|
|
+ Page<QuestionChapterBusinessVo> pageVo = new Page<>();
|
|
|
+ BeanUtil.copyProperties(page,pageVo);
|
|
|
+ pageVo.addAll(voList);
|
|
|
+ voList = pageVo;
|
|
|
+ }
|
|
|
+ return voList;
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public Boolean insertByAddBo(QuestionChapterBusinessAddBo bo) {
|
|
|
+ QuestionChapterBusiness add = BeanUtil.toBean(bo, QuestionChapterBusiness.class);
|
|
|
+ validEntityBeforeSave(add);
|
|
|
+ return this.save(add);
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public Boolean updateByEditBo(QuestionChapterBusinessEditBo bo) {
|
|
|
+ QuestionChapterBusiness update = BeanUtil.toBean(bo, QuestionChapterBusiness.class);
|
|
|
+ validEntityBeforeSave(update);
|
|
|
+ return this.updateById(update);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 保存前的数据校验
|
|
|
+ *
|
|
|
+ * @param entity 实体类数据
|
|
|
+ */
|
|
|
+ private void validEntityBeforeSave(QuestionChapterBusiness entity){
|
|
|
+ //TODO 做一些数据校验,如唯一约束
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public Boolean deleteWithValidByIds(Collection<Long> ids, Boolean isValid) {
|
|
|
+ if(isValid){
|
|
|
+ //TODO 做一些业务上的校验,判断是否需要校验
|
|
|
+ }
|
|
|
+ return this.removeByIds(ids);
|
|
|
+ }
|
|
|
+}
|