ITDeviceClockService.java 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. package com.ruoyi.system.service;
  2. import java.util.List;
  3. import com.ruoyi.system.domain.TDeviceClock;
  4. /**
  5. * 设备设置闹钟Service接口
  6. *
  7. * @author zhengjie
  8. * @date 2023-09-20
  9. */
  10. public interface ITDeviceClockService
  11. {
  12. /**
  13. * 查询设备设置闹钟
  14. *
  15. * @param id 设备设置闹钟主键
  16. * @return 设备设置闹钟
  17. */
  18. public TDeviceClock selectTDeviceClockById(Integer id);
  19. /**
  20. * 查询设备设置闹钟
  21. *
  22. * @param deviceIdCode 设备设置号
  23. * @return 设备设置闹钟
  24. */
  25. public TDeviceClock selectTDeviceClockByCode(String deviceIdCode);
  26. /**
  27. * 查询设备设置闹钟列表
  28. *
  29. * @param tDeviceClock 设备设置闹钟
  30. * @return 设备设置闹钟集合
  31. */
  32. public List<TDeviceClock> selectTDeviceClockList(TDeviceClock tDeviceClock);
  33. /**
  34. * 新增设备设置闹钟
  35. *
  36. * @param tDeviceClock 设备设置闹钟
  37. * @return 结果
  38. */
  39. public int insertTDeviceClock(List<TDeviceClock> tDeviceClock);
  40. /**
  41. * 修改设备设置闹钟
  42. *
  43. * @param tDeviceClock 设备设置闹钟
  44. * @return 结果
  45. */
  46. public int updateTDeviceClock(TDeviceClock tDeviceClock);
  47. /**
  48. * 批量删除设备设置闹钟
  49. *
  50. * @param ids 需要删除的设备设置闹钟主键集合
  51. * @return 结果
  52. */
  53. public int deleteTDeviceClockByIds(Integer[] ids);
  54. /**
  55. * 删除设备设置闹钟信息
  56. *
  57. * @param id 设备设置闹钟主键
  58. * @return 结果
  59. */
  60. public int deleteTDeviceClockById(Integer id);
  61. }