package org.dromara.qa.qm.service.impl; import org.dromara.common.core.utils.MapstructUtils; import org.dromara.common.core.utils.StringUtils; import org.dromara.common.mybatis.core.page.TableDataInfo; import org.dromara.common.mybatis.core.page.PageQuery; import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper; import com.baomidou.mybatisplus.core.toolkit.Wrappers; import lombok.RequiredArgsConstructor; import lombok.extern.slf4j.Slf4j; import org.springframework.stereotype.Service; import org.dromara.qa.qm.domain.bo.QmStdBo; import org.dromara.qa.qm.domain.vo.QmStdVo; import org.dromara.qa.qm.domain.QmStd; import org.dromara.qa.qm.mapper.QmStdMapper; import org.dromara.qa.qm.service.IQmStdService; import java.util.List; import java.util.Map; import java.util.Collection; /** * 判定规程Service业务层处理 * * @author zhuguifei * @date 2026-03-11 */ @Slf4j @RequiredArgsConstructor @Service public class QmStdServiceImpl implements IQmStdService { private final QmStdMapper baseMapper; /** * 查询判定规程 * * @param id 主键 * @return 判定规程 */ @Override public QmStdVo queryById(String id){ return baseMapper.selectVoById(id); } /** * 分页查询判定规程列表 * * @param bo 查询条件 * @param pageQuery 分页参数 * @return 判定规程分页列表 */ @Override public TableDataInfo queryPageList(QmStdBo bo, PageQuery pageQuery) { LambdaQueryWrapper lqw = buildQueryWrapper(bo); Page result = baseMapper.selectVoPage(pageQuery.build(), lqw); return TableDataInfo.build(result); } /** * 查询符合条件的判定规程列表 * * @param bo 查询条件 * @return 判定规程列表 */ @Override public List queryList(QmStdBo bo) { LambdaQueryWrapper lqw = buildQueryWrapper(bo); return baseMapper.selectVoList(lqw); } private LambdaQueryWrapper buildQueryWrapper(QmStdBo bo) { Map params = bo.getParams(); LambdaQueryWrapper lqw = Wrappers.lambdaQuery(); lqw.orderByAsc(QmStd::getId); lqw.like(StringUtils.isNotBlank(bo.getStdCode()), QmStd::getStdCode, bo.getStdCode()); lqw.like(StringUtils.isNotBlank(bo.getStdName()), QmStd::getStdName, bo.getStdName()); lqw.eq(bo.getTyp() != null, QmStd::getTyp, bo.getTyp()); lqw.eq(StringUtils.isNotBlank(bo.getStdDes()), QmStd::getStdDes, bo.getStdDes()); lqw.eq(bo.getCheckLevel() != null, QmStd::getCheckLevel, bo.getCheckLevel()); lqw.eq(bo.getCategory() != null, QmStd::getCategory, bo.getCategory()); lqw.eq(StringUtils.isNotBlank(bo.getMatfltype()), QmStd::getMatfltype, bo.getMatfltype()); lqw.like(StringUtils.isNotBlank(bo.getMatflname()), QmStd::getMatflname, bo.getMatflname()); return lqw; } /** * 新增判定规程 * * @param bo 判定规程 * @return 是否新增成功 */ @Override public Boolean insertByBo(QmStdBo bo) { QmStd add = MapstructUtils.convert(bo, QmStd.class); validEntityBeforeSave(add); boolean flag = baseMapper.insert(add) > 0; if (flag) { bo.setId(add.getId()); } return flag; } /** * 修改判定规程 * * @param bo 判定规程 * @return 是否修改成功 */ @Override public Boolean updateByBo(QmStdBo bo) { QmStd update = MapstructUtils.convert(bo, QmStd.class); validEntityBeforeSave(update); return baseMapper.updateById(update) > 0; } /** * 保存前的数据校验 */ private void validEntityBeforeSave(QmStd entity){ //TODO 做一些数据校验,如唯一约束 } /** * 校验并批量删除判定规程信息 * * @param ids 待删除的主键集合 * @param isValid 是否进行有效性校验 * @return 是否删除成功 */ @Override public Boolean deleteWithValidByIds(Collection ids, Boolean isValid) { if(isValid){ //TODO 做一些业务上的校验,判断是否需要校验 } return baseMapper.deleteByIds(ids) > 0; } }