ITWarehouseCheckItemsService.java 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. package com.ruoyi.warehouse.check.service;
  2. import java.util.List;
  3. import com.ruoyi.warehouse.check.domain.TWarehouseCheckItems;
  4. /**
  5. * 巡检check-itemService接口
  6. *
  7. * @author dongyongwei
  8. * @date 2021-07-21
  9. */
  10. public interface ITWarehouseCheckItemsService
  11. {
  12. /**
  13. * 查询巡检check-item
  14. *
  15. * @param fId 巡检check-itemID
  16. * @return 巡检check-item
  17. */
  18. public TWarehouseCheckItems selectTWarehouseCheckItemsById(Long fId);
  19. /**
  20. * 查询巡检check-item列表
  21. *
  22. * @param tWarehouseCheckItems 巡检check-item
  23. * @return 巡检check-item集合
  24. */
  25. public List<TWarehouseCheckItems> selectTWarehouseCheckItemsList(TWarehouseCheckItems tWarehouseCheckItems);
  26. /**
  27. * 新增巡检check-item
  28. *
  29. * @param tWarehouseCheckItems 巡检check-item
  30. * @return 结果
  31. */
  32. public int insertTWarehouseCheckItems(TWarehouseCheckItems tWarehouseCheckItems);
  33. /**
  34. * 修改巡检check-item
  35. *
  36. * @param tWarehouseCheckItems 巡检check-item
  37. * @return 结果
  38. */
  39. public int updateTWarehouseCheckItems(TWarehouseCheckItems tWarehouseCheckItems);
  40. /**
  41. * 批量删除巡检check-item
  42. *
  43. * @param fIds 需要删除的巡检check-itemID
  44. * @return 结果
  45. */
  46. public int deleteTWarehouseCheckItemsByIds(Long[] fIds);
  47. /**
  48. * 删除巡检check-item信息
  49. *
  50. * @param fId 巡检check-itemID
  51. * @return 结果
  52. */
  53. public int deleteTWarehouseCheckItemsById(Long fId);
  54. /**
  55. * app查询巡检模块
  56. * @param tWarehouseCheckItems
  57. * @return
  58. */
  59. public List<TWarehouseCheckItems> appListByUser(TWarehouseCheckItems tWarehouseCheckItems);
  60. }