package com.ruoyi.project.tr.troubleshootType.service; import java.util.List; import com.ruoyi.project.tr.troubleshootType.domain.TroubleshootType; /** * 排查类型设置Service接口 * * @author wm * @date 2020-05-05 */ public interface ITroubleshootTypeService { /** * 查询排查类型设置 * * @param typeId 排查类型设置ID * @return 排查类型设置 */ TroubleshootType selectTroubleshootTypeById(Long typeId); /** * 查询排查类型设置列表 * * @param troubleshootType 排查类型设置 * @return 排查类型设置集合 */ List selectTroubleshootTypeList(TroubleshootType troubleshootType); /** * 新增排查类型设置 * * @param troubleshootType 排查类型设置 * @return 结果 */ int insertTroubleshootType(TroubleshootType troubleshootType); /** * 修改排查类型设置 * * @param troubleshootType 排查类型设置 * @return 结果 */ int updateTroubleshootType(TroubleshootType troubleshootType); /** * 批量删除排查类型设置 * * @param ids 需要删除的数据ID * @return 结果 */ int deleteTroubleshootTypeByIds(String ids); /** * 删除排查类型设置信息 * * @param typeId 排查类型设置ID * @return 结果 */ int deleteTroubleshootTypeById(Long typeId); }