package com.ruoyi.project.tr.troubleshootType.mapper; import java.util.List; import com.ruoyi.project.tr.troubleshootType.domain.TroubleshootType; /** * 排查类型设置Mapper接口 * * @author wm * @date 2020-05-05 */ public interface TroubleshootTypeMapper { /** * 查询排查类型设置 * * @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 typeId 排查类型设置ID * @return 结果 */ int deleteTroubleshootTypeById(Long typeId); /** * 批量删除排查类型设置 * * @param typeIds 需要删除的数据ID * @return 结果 */ int deleteTroubleshootTypeByIds(String[] typeIds); }