cuilei
2025-05-29 d4328b5fac8a01d685a3068f097668132095807d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package org.jeecg.modules.tms.service;
 
import org.jeecg.modules.tms.entity.ParaTurningTools;
import com.baomidou.mybatisplus.extension.service.IService;
import org.jeecg.modules.tms.entity.dto.ToolQueryParamDto;
import org.jeecg.modules.tms.entity.vo.ParaTurningToolsVo;
 
import java.util.List;
 
/**
 * @Description: tms_para_turning_tools
 * @Author: jeecg-boot
 * @Date:   2025-05-12
 * @Version: V1.0
 */
public interface IParaTurningToolsService extends IService<ParaTurningTools> {
 
    List<ParaTurningToolsVo> selectByClassifyAndDiameter(ToolQueryParamDto queryParamDto);
}