|
@@ -0,0 +1,138 @@
|
|
|
|
|
+package org.dromara.business.service.impl;
|
|
|
|
|
+
|
|
|
|
|
+import org.dromara.common.core.utils.MapstructUtils;
|
|
|
|
|
+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.business.domain.bo.BlindLevelsBo;
|
|
|
|
|
+import org.dromara.business.domain.vo.BlindLevelsVo;
|
|
|
|
|
+import org.dromara.business.domain.BlindLevels;
|
|
|
|
|
+import org.dromara.business.mapper.BlindLevelsMapper;
|
|
|
|
|
+import org.dromara.business.service.IBlindLevelsService;
|
|
|
|
|
+
|
|
|
|
|
+import java.util.List;
|
|
|
|
|
+import java.util.Map;
|
|
|
|
|
+import java.util.Collection;
|
|
|
|
|
+
|
|
|
|
|
+/**
|
|
|
|
|
+ * 【请填写功能名称】Service业务层处理
|
|
|
|
|
+ *
|
|
|
|
|
+ * @author Lion Li
|
|
|
|
|
+ * @date 2025-06-10
|
|
|
|
|
+ */
|
|
|
|
|
+@Slf4j
|
|
|
|
|
+@RequiredArgsConstructor
|
|
|
|
|
+@Service
|
|
|
|
|
+public class BlindLevelsServiceImpl implements IBlindLevelsService {
|
|
|
|
|
+
|
|
|
|
|
+ private final BlindLevelsMapper baseMapper;
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 查询【请填写功能名称】
|
|
|
|
|
+ *
|
|
|
|
|
+ * @param id 主键
|
|
|
|
|
+ * @return 【请填写功能名称】
|
|
|
|
|
+ */
|
|
|
|
|
+ @Override
|
|
|
|
|
+ public BlindLevelsVo queryById(Long id){
|
|
|
|
|
+ return baseMapper.selectVoByIdInfo(id);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 分页查询【请填写功能名称】列表
|
|
|
|
|
+ *
|
|
|
|
|
+ * @param bo 查询条件
|
|
|
|
|
+ * @param pageQuery 分页参数
|
|
|
|
|
+ * @return 【请填写功能名称】分页列表
|
|
|
|
|
+ */
|
|
|
|
|
+ @Override
|
|
|
|
|
+ public TableDataInfo<BlindLevelsVo> queryPageList(BlindLevelsBo bo, PageQuery pageQuery) {
|
|
|
|
|
+ LambdaQueryWrapper<BlindLevels> lqw = buildQueryWrapper(bo);
|
|
|
|
|
+ Page<BlindLevelsVo> result = baseMapper.selectVoPage(pageQuery.build(), lqw);
|
|
|
|
|
+ return TableDataInfo.build(result);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 查询符合条件的【请填写功能名称】列表
|
|
|
|
|
+ *
|
|
|
|
|
+ * @param bo 查询条件
|
|
|
|
|
+ * @return 【请填写功能名称】列表
|
|
|
|
|
+ */
|
|
|
|
|
+ @Override
|
|
|
|
|
+ public List<BlindLevelsVo> queryList(BlindLevelsBo bo) {
|
|
|
|
|
+ LambdaQueryWrapper<BlindLevels> lqw = buildQueryWrapper(bo);
|
|
|
|
|
+ return baseMapper.selectBlindStructuresVoList(lqw);
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ private LambdaQueryWrapper<BlindLevels> buildQueryWrapper(BlindLevelsBo bo) {
|
|
|
|
|
+ Map<String, Object> params = bo.getParams();
|
|
|
|
|
+ LambdaQueryWrapper<BlindLevels> lqw = Wrappers.lambdaQuery();
|
|
|
|
|
+ lqw.orderByAsc(BlindLevels::getId);
|
|
|
|
|
+ lqw.eq(bo.getBlindStructureId() != null, BlindLevels::getBlindStructureId, bo.getBlindStructureId());
|
|
|
|
|
+ lqw.eq(bo.getLevelNumber() != null, BlindLevels::getLevelNumber, bo.getLevelNumber());
|
|
|
|
|
+ lqw.eq(bo.getSmallBlind() != null, BlindLevels::getSmallBlind, bo.getSmallBlind());
|
|
|
|
|
+ lqw.eq(bo.getBigBlind() != null, BlindLevels::getBigBlind, bo.getBigBlind());
|
|
|
|
|
+ lqw.eq(bo.getAnte() != null, BlindLevels::getAnte, bo.getAnte());
|
|
|
|
|
+ lqw.eq(bo.getDurationMinutes() != null, BlindLevels::getDurationMinutes, bo.getDurationMinutes());
|
|
|
|
|
+ lqw.eq(bo.getCreatedAt() != null, BlindLevels::getCreatedAt, bo.getCreatedAt());
|
|
|
|
|
+ lqw.eq(bo.getUpdatedAt() != null, BlindLevels::getUpdatedAt, bo.getUpdatedAt());
|
|
|
|
|
+ return lqw;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 新增【请填写功能名称】
|
|
|
|
|
+ *
|
|
|
|
|
+ * @param bo 【请填写功能名称】
|
|
|
|
|
+ * @return 是否新增成功
|
|
|
|
|
+ */
|
|
|
|
|
+ @Override
|
|
|
|
|
+ public Boolean insertByBo(BlindLevelsBo bo) {
|
|
|
|
|
+ BlindLevels add = MapstructUtils.convert(bo, BlindLevels.class);
|
|
|
|
|
+ validEntityBeforeSave(add);
|
|
|
|
|
+ boolean flag = baseMapper.insertBlindLevel(add) > 0;
|
|
|
|
|
+ if (flag) {
|
|
|
|
|
+ bo.setId(add.getId());
|
|
|
|
|
+ }
|
|
|
|
|
+ return flag;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 修改【请填写功能名称】
|
|
|
|
|
+ *
|
|
|
|
|
+ * @param bo 【请填写功能名称】
|
|
|
|
|
+ * @return 是否修改成功
|
|
|
|
|
+ */
|
|
|
|
|
+ @Override
|
|
|
|
|
+ public Boolean updateByBo(BlindLevelsBo bo) {
|
|
|
|
|
+ BlindLevels update = MapstructUtils.convert(bo, BlindLevels.class);
|
|
|
|
|
+ validEntityBeforeSave(update);
|
|
|
|
|
+ return baseMapper.updateBlindLevelById(update) > 0;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 保存前的数据校验
|
|
|
|
|
+ */
|
|
|
|
|
+ private void validEntityBeforeSave(BlindLevels entity){
|
|
|
|
|
+ //TODO 做一些数据校验,如唯一约束
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ /**
|
|
|
|
|
+ * 校验并批量删除【请填写功能名称】信息
|
|
|
|
|
+ *
|
|
|
|
|
+ * @param ids 待删除的主键集合
|
|
|
|
|
+ * @param isValid 是否进行有效性校验
|
|
|
|
|
+ * @return 是否删除成功
|
|
|
|
|
+ */
|
|
|
|
|
+ @Override
|
|
|
|
|
+ public Boolean deleteWithValidByIds(Collection<Long> ids, Boolean isValid) {
|
|
|
|
|
+ if(isValid){
|
|
|
|
|
+ //TODO 做一些业务上的校验,判断是否需要校验
|
|
|
|
|
+ }
|
|
|
|
|
+ return baseMapper.deleteBlindLevelById(ids) > 0;
|
|
|
|
|
+ }
|
|
|
|
|
+}
|