package com.ruoyi.system.service; import java.util.List; import com.ruoyi.system.domain.TOtherSolve; /** * 其他告警处理Service接口 * * @author zhengjie * @date 2023-09-09 */ public interface ITOtherSolveService { /** * 查询其他告警处理 * * @param id 其他告警处理主键 * @return 其他告警处理 */ public TOtherSolve selectTOtherSolveById(Integer id); /** * 查询其他告警处理列表 * * @param tOtherSolve 其他告警处理 * @return 其他告警处理集合 */ public List selectTOtherSolveList(TOtherSolve tOtherSolve); /** * 新增其他告警处理 * * @param tOtherSolve 其他告警处理 * @return 结果 */ public int insertTOtherSolve(TOtherSolve tOtherSolve); /** * 修改其他告警处理 * * @param tOtherSolve 其他告警处理 * @return 结果 */ public int updateTOtherSolve(TOtherSolve tOtherSolve); /** * 批量删除其他告警处理 * * @param ids 需要删除的其他告警处理主键集合 * @return 结果 */ public int deleteTOtherSolveByIds(Integer[] ids); /** * 删除其他告警处理信息 * * @param id 其他告警处理主键 * @return 结果 */ public int deleteTOtherSolveById(Integer id); }