对比新文件 |
| | |
| | | package org.jeecg.modules.tms.service; |
| | | |
| | | import org.jeecg.modules.tms.entity.ParaBlade; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import org.jeecg.modules.tms.entity.dto.ToolQueryParamDto; |
| | | import org.jeecg.modules.tms.entity.vo.ParaBladeVo; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @Description: tms_para_blade |
| | | * @Author: jeecg-boot |
| | | * @Date: 2025-05-12 |
| | | * @Version: V1.0 |
| | | */ |
| | | public interface IParaBladeService extends IService<ParaBlade> { |
| | | |
| | | List<ParaBladeVo> selectByClassifyAndParam(ToolQueryParamDto queryParam); |
| | | } |