| | |
| | | package org.jeecg.modules.tms.service.impl; |
| | | |
| | | import org.jeecg.modules.tms.entity.ParaHoleTools; |
| | | import org.jeecg.modules.tms.entity.vo.ParaHolesToolsVo; |
| | | import org.jeecg.modules.tms.mapper.ParaHoleToolsMapper; |
| | | import org.jeecg.modules.tms.service.IParaHoleToolsService; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl; |
| | | |
| | | import java.util.Collections; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @Description: tms_para_hole_tools |
| | |
| | | @Service |
| | | public class ParaHoleToolsServiceImpl extends ServiceImpl<ParaHoleToolsMapper, ParaHoleTools> implements IParaHoleToolsService { |
| | | |
| | | @Override |
| | | public List<ParaHolesToolsVo> selectByClassifyAndDiameter(String classifyId, String diameter) { |
| | | return this.baseMapper.selectByClassifyAndDiameter(classifyId, diameter); |
| | | } |
| | | } |