IAuditPathsLevelsService.java 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. package com.ruoyi.approvalFlow.service;
  2. import com.ruoyi.approvalFlow.domain.AuditPathsLevels;
  3. import java.util.List;
  4. /**
  5. * 审批流配置明细级别Service接口
  6. *
  7. * @author ruoyi
  8. * @date 2021-01-21
  9. */
  10. public interface IAuditPathsLevelsService {
  11. /**
  12. * 查询审批流配置明细级别
  13. *
  14. * @param id 审批流配置明细级别ID
  15. * @return 审批流配置明细级别
  16. */
  17. public AuditPathsLevels selectAuditPathsLevelsById(Long id);
  18. /**
  19. * 查询审批流配置明细级别列表
  20. *
  21. * @param auditPathsLevels 审批流配置明细级别
  22. * @return 审批流配置明细级别集合
  23. */
  24. public List<AuditPathsLevels> selectAuditPathsLevelsList(AuditPathsLevels auditPathsLevels);
  25. /**
  26. * 新增审批流配置明细级别
  27. *
  28. * @param auditPathsLevels 审批流配置明细级别
  29. * @return 结果
  30. */
  31. public int insertAuditPathsLevels(AuditPathsLevels auditPathsLevels);
  32. /**
  33. * 修改审批流配置明细级别
  34. *
  35. * @param auditPathsLevels 审批流配置明细级别
  36. * @return 结果
  37. */
  38. public int updateAuditPathsLevels(AuditPathsLevels auditPathsLevels);
  39. /**
  40. * 批量删除审批流配置明细级别
  41. *
  42. * @param ids 需要删除的审批流配置明细级别ID
  43. * @return 结果
  44. */
  45. public int deleteAuditPathsLevelsByIds(Long[] ids);
  46. /**
  47. * 删除审批流配置明细级别信息
  48. *
  49. * @param id 审批流配置明细级别ID
  50. * @return 结果
  51. */
  52. public int deleteAuditPathsLevelsById(Long id);
  53. }