|
@@ -0,0 +1,107 @@
|
|
|
+package com.zhongzheng.modules.inform.service.impl;
|
|
|
+
|
|
|
+import cn.hutool.core.bean.BeanUtil;
|
|
|
+import cn.hutool.core.util.StrUtil;
|
|
|
+import com.zhongzheng.common.utils.DateUtils;
|
|
|
+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 com.zhongzheng.modules.inform.bo.InformAddBo;
|
|
|
+import com.zhongzheng.modules.inform.bo.InformQueryBo;
|
|
|
+import com.zhongzheng.modules.inform.bo.InformEditBo;
|
|
|
+import com.zhongzheng.modules.inform.domain.Inform;
|
|
|
+import com.zhongzheng.modules.inform.mapper.InformMapper;
|
|
|
+import com.zhongzheng.modules.inform.vo.InformVo;
|
|
|
+import com.zhongzheng.modules.inform.service.IInformService;
|
|
|
+
|
|
|
+import java.util.Collection;
|
|
|
+import java.util.Collections;
|
|
|
+import java.util.List;
|
|
|
+import java.util.stream.Collectors;
|
|
|
+
|
|
|
+/**
|
|
|
+ * 【请填写功能名称】Service业务层处理
|
|
|
+ *
|
|
|
+ * @author ruoyi
|
|
|
+ * @date 2021-11-23
|
|
|
+ */
|
|
|
+@Service
|
|
|
+public class InformServiceImpl extends ServiceImpl<InformMapper, Inform> implements IInformService {
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public InformVo queryById(Long informId){
|
|
|
+ Inform db = this.baseMapper.selectById(informId);
|
|
|
+ return BeanUtil.toBean(db, InformVo.class);
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public List<InformVo> queryList(InformQueryBo bo) {
|
|
|
+ LambdaQueryWrapper<Inform> lqw = Wrappers.lambdaQuery();
|
|
|
+ lqw.eq(bo.getInformType() != null, Inform::getInformType, bo.getInformType());
|
|
|
+ lqw.like(StrUtil.isNotBlank(bo.getInformName()), Inform::getInformName, bo.getInformName());
|
|
|
+ lqw.eq(bo.getInformWay() != null, Inform::getInformWay, bo.getInformWay());
|
|
|
+ lqw.eq(bo.getClassifyId() != null, Inform::getClassifyId, bo.getClassifyId());
|
|
|
+ lqw.eq(bo.getIssueStatus() != null, Inform::getIssueStatus, bo.getIssueStatus());
|
|
|
+ lqw.eq(bo.getIssueTime() != null, Inform::getIssueTime, bo.getIssueTime());
|
|
|
+ lqw.eq(bo.getReceiptStatus() != null, Inform::getReceiptStatus, bo.getReceiptStatus());
|
|
|
+ lqw.eq(StrUtil.isNotBlank(bo.getAffiche()), Inform::getAffiche, bo.getAffiche());
|
|
|
+ lqw.eq(bo.getStatus() != null, Inform::getStatus, bo.getStatus());
|
|
|
+ return entity2Vo(this.list(lqw));
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 实体类转化成视图对象
|
|
|
+ *
|
|
|
+ * @param collection 实体类集合
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ private List<InformVo> entity2Vo(Collection<Inform> collection) {
|
|
|
+ List<InformVo> voList = collection.stream()
|
|
|
+ .map(any -> BeanUtil.toBean(any, InformVo.class))
|
|
|
+ .collect(Collectors.toList());
|
|
|
+ if (collection instanceof Page) {
|
|
|
+ Page<Inform> page = (Page<Inform>)collection;
|
|
|
+ Page<InformVo> pageVo = new Page<>();
|
|
|
+ BeanUtil.copyProperties(page,pageVo);
|
|
|
+ pageVo.addAll(voList);
|
|
|
+ voList = pageVo;
|
|
|
+ }
|
|
|
+ return voList;
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public Boolean insertByAddBo(InformAddBo bo) {
|
|
|
+ Inform add = BeanUtil.toBean(bo, Inform.class);
|
|
|
+ validEntityBeforeSave(add);
|
|
|
+ add.setCreateTime(DateUtils.getNowTime());
|
|
|
+ add.setUpdateTime(DateUtils.getNowTime());
|
|
|
+ return this.save(add);
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public Boolean updateByEditBo(InformEditBo bo) {
|
|
|
+ Inform update = BeanUtil.toBean(bo, Inform.class);
|
|
|
+ validEntityBeforeSave(update);
|
|
|
+ update.setUpdateTime(DateUtils.getNowTime());
|
|
|
+ return this.updateById(update);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 保存前的数据校验
|
|
|
+ *
|
|
|
+ * @param entity 实体类数据
|
|
|
+ */
|
|
|
+ private void validEntityBeforeSave(Inform entity){
|
|
|
+ //TODO 做一些数据校验,如唯一约束
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public Boolean deleteWithValidByIds(Collection<Long> ids, Boolean isValid) {
|
|
|
+ if(isValid){
|
|
|
+ //TODO 做一些业务上的校验,判断是否需要校验
|
|
|
+ }
|
|
|
+ return this.removeByIds(ids);
|
|
|
+ }
|
|
|
+}
|