ITShiftLogService.java 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. package com.ruoyi.project.shiftmgr.service;
  2. import java.util.List;
  3. import com.ruoyi.project.shiftmgr.domain.TShiftLog;
  4. /**
  5. * 轮班日志Service接口
  6. *
  7. * @author ruoyi
  8. * @date 2023-08-17
  9. */
  10. public interface ITShiftLogService
  11. {
  12. /**
  13. * 查询轮班日志
  14. *
  15. * @param id 轮班日志主键
  16. * @return 轮班日志
  17. */
  18. public TShiftLog selectTShiftLogById(Long id);
  19. /**
  20. * 查询轮班日志列表
  21. *
  22. * @param tShiftLog 轮班日志
  23. * @return 轮班日志集合
  24. */
  25. public List<TShiftLog> selectTShiftLogList(TShiftLog tShiftLog);
  26. /**
  27. * 新增轮班日志
  28. *
  29. * @param tShiftLog 轮班日志
  30. * @return 结果
  31. */
  32. public int insertTShiftLog(TShiftLog tShiftLog);
  33. /**
  34. * 修改轮班日志
  35. *
  36. * @param tShiftLog 轮班日志
  37. * @return 结果
  38. */
  39. public int updateTShiftLog(TShiftLog tShiftLog);
  40. /**
  41. * 批量删除轮班日志
  42. *
  43. * @param ids 需要删除的轮班日志主键集合
  44. * @return 结果
  45. */
  46. public int deleteTShiftLogByIds(Long[] ids);
  47. /**
  48. * 删除轮班日志信息
  49. *
  50. * @param id 轮班日志主键
  51. * @return 结果
  52. */
  53. public int deleteTShiftLogById(Long id);
  54. }