TOtherSolveMapper.java 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. package com.ruoyi.system.mapper;
  2. import java.util.List;
  3. import com.ruoyi.system.domain.TOtherSolve;
  4. import com.ruoyi.system.domain.TSosSolve;
  5. /**
  6. * 其他告警处理Mapper接口
  7. *
  8. * @author zhengjie
  9. * @date 2023-09-09
  10. */
  11. public interface TOtherSolveMapper
  12. {
  13. /**
  14. * 查询其他告警处理
  15. *
  16. * @param id 其他告警处理主键
  17. * @return 其他告警处理
  18. */
  19. public TOtherSolve selectTOtherSolveById(Integer id);
  20. /**
  21. * 查询其他告警处理
  22. *
  23. * @param aid 其他告警处理主键
  24. * @return 其他告警处理
  25. */
  26. public TOtherSolve selectTOtherSolveByAid(Integer aid);
  27. /**
  28. * 查询其他告警处理列表
  29. *
  30. * @param tOtherSolve 其他告警处理
  31. * @return 其他告警处理集合
  32. */
  33. public List<TOtherSolve> selectTOtherSolveList(TOtherSolve tOtherSolve);
  34. /**
  35. * 新增其他告警处理
  36. *
  37. * @param tOtherSolve 其他告警处理
  38. * @return 结果
  39. */
  40. public int insertTOtherSolve(TOtherSolve tOtherSolve);
  41. /**
  42. * 修改其他告警处理
  43. *
  44. * @param tOtherSolve 其他告警处理
  45. * @return 结果
  46. */
  47. public int updateTOtherSolve(TOtherSolve tOtherSolve);
  48. /**
  49. * 删除其他告警处理
  50. *
  51. * @param id 其他告警处理主键
  52. * @return 结果
  53. */
  54. public int deleteTOtherSolveById(Integer id);
  55. /**
  56. * 批量删除其他告警处理
  57. *
  58. * @param ids 需要删除的数据主键集合
  59. * @return 结果
  60. */
  61. public int deleteTOtherSolveByIds(Integer[] ids);
  62. }