You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
739 B
Java
27 lines
739 B
Java
package com.supervision.service;
|
|
|
|
import com.supervision.model.ConfigPhysicalTool;
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
import com.supervision.vo.ask.ConfigPhysicalToolResVO;
|
|
|
|
import java.util.List;
|
|
|
|
/**
|
|
* @author flevance
|
|
* @description 针对表【vp_config_physical_tool(体格检查工具配置表)】的数据库操作Service
|
|
* @createDate 2023-10-20 17:19:21
|
|
*/
|
|
public interface ConfigPhysicalToolService extends IService<ConfigPhysicalTool> {
|
|
|
|
List<ConfigPhysicalToolResVO> queryPhysicalToolList();
|
|
|
|
/**
|
|
* 工具
|
|
* @param type 工具类型
|
|
* @param toolName 工具名称
|
|
* @return
|
|
*/
|
|
ConfigPhysicalTool queryPhysicalToolByTypeAndToolName(String type, String toolName);
|
|
|
|
}
|