|
|
@@ -0,0 +1,113 @@
|
|
|
+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.common.utils.ServletUtils;
|
|
|
+import com.zhongzheng.modules.bank.bo.ExamAddBo;
|
|
|
+import com.zhongzheng.modules.bank.bo.ExamEditBo;
|
|
|
+import com.zhongzheng.modules.bank.bo.ExamQueryBo;
|
|
|
+import com.zhongzheng.modules.bank.domain.Exam;
|
|
|
+import com.zhongzheng.modules.bank.mapper.ExamMapper;
|
|
|
+import com.zhongzheng.modules.bank.service.IExamService;
|
|
|
+import com.zhongzheng.modules.bank.vo.ExamVo;
|
|
|
+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-22
|
|
|
+ */
|
|
|
+@Service
|
|
|
+public class ExamServiceImpl extends ServiceImpl<ExamMapper, Exam> implements IExamService {
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public ExamVo queryById(Long examId){
|
|
|
+ Exam db = this.baseMapper.selectById(examId);
|
|
|
+ return BeanUtil.toBean(db, ExamVo.class);
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public List<ExamVo> queryList(ExamQueryBo bo) {
|
|
|
+ LambdaQueryWrapper<Exam> lqw = Wrappers.lambdaQuery();
|
|
|
+ lqw.in(bo.getStatus() != null, Exam::getStatus, bo.getStatus());
|
|
|
+ lqw.eq(bo.getEducationTypeId() != null, Exam::getEducationTypeId, bo.getEducationTypeId());
|
|
|
+ lqw.eq(bo.getBusinessId() != null, Exam::getBusinessId, bo.getBusinessId());
|
|
|
+ lqw.eq(bo.getSubjectId() != null, Exam::getSubjectId, bo.getSubjectId());
|
|
|
+ lqw.like(StrUtil.isNotBlank(bo.getPrefixName()), Exam::getPrefixName, bo.getPrefixName());
|
|
|
+ lqw.eq(bo.getProjectId() != null, Exam::getProjectId, bo.getProjectId());
|
|
|
+ lqw.eq(StrUtil.isNotBlank(bo.getCode()), Exam::getCode, bo.getCode());
|
|
|
+ lqw.like(StrUtil.isNotBlank(bo.getExamName()), Exam::getExamName, bo.getExamName());
|
|
|
+ lqw.eq(bo.getPublishStatus() != null, Exam::getPublishStatus, bo.getPublishStatus());
|
|
|
+ lqw.eq(bo.getYear() != null, Exam::getYear, bo.getYear());
|
|
|
+ lqw.eq(bo.getCityId() != null, Exam::getCityId, bo.getCityId());
|
|
|
+ lqw.eq(bo.getProvinceId() != null, Exam::getProvinceId, bo.getProvinceId());
|
|
|
+ lqw.eq(bo.getExamPaperId() != null, Exam::getExamPaperId, bo.getExamPaperId());
|
|
|
+ return entity2Vo(this.list(lqw));
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 实体类转化成视图对象
|
|
|
+ *
|
|
|
+ * @param collection 实体类集合
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ private List<ExamVo> entity2Vo(Collection<Exam> collection) {
|
|
|
+ List<ExamVo> voList = collection.stream()
|
|
|
+ .map(any -> BeanUtil.toBean(any, ExamVo.class))
|
|
|
+ .collect(Collectors.toList());
|
|
|
+ if (collection instanceof Page) {
|
|
|
+ Page<Exam> page = (Page<Exam>)collection;
|
|
|
+ Page<ExamVo> pageVo = new Page<>();
|
|
|
+ BeanUtil.copyProperties(page,pageVo);
|
|
|
+ pageVo.addAll(voList);
|
|
|
+ voList = pageVo;
|
|
|
+ }
|
|
|
+ return voList;
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public Boolean insertByAddBo(ExamAddBo bo) {
|
|
|
+ Exam add = BeanUtil.toBean(bo, Exam.class);
|
|
|
+ add.setCode(ServletUtils.getEncoded("SJ"));
|
|
|
+ validEntityBeforeSave(add);
|
|
|
+ add.setCreateTime(DateUtils.getNowTime());
|
|
|
+ add.setUpdateTime(DateUtils.getNowTime());
|
|
|
+ return this.save(add);
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public Boolean updateByEditBo(ExamEditBo bo) {
|
|
|
+ Exam update = BeanUtil.toBean(bo, Exam.class);
|
|
|
+ validEntityBeforeSave(update);
|
|
|
+ update.setUpdateTime(DateUtils.getNowTime());
|
|
|
+ return this.updateById(update);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 保存前的数据校验
|
|
|
+ *
|
|
|
+ * @param entity 实体类数据
|
|
|
+ */
|
|
|
+ private void validEntityBeforeSave(Exam entity){
|
|
|
+ //TODO 做一些数据校验,如唯一约束
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public Boolean deleteWithValidByIds(Collection<Long> ids, Boolean isValid) {
|
|
|
+ if(isValid){
|
|
|
+ //TODO 做一些业务上的校验,判断是否需要校验
|
|
|
+ }
|
|
|
+ return this.removeByIds(ids);
|
|
|
+ }
|
|
|
+}
|