AuditPathsLevelsMapper.java 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. package com.ruoyi.approvalFlow.mapper;
  2. import com.ruoyi.approvalFlow.domain.AuditItems;
  3. import com.ruoyi.approvalFlow.domain.AuditPathsLevels;
  4. import java.util.List;
  5. import java.util.Map;
  6. import java.util.Objects;
  7. /**
  8. * 审批流配置明细级别Mapper接口
  9. *
  10. * @author ruoyi
  11. * @date 2021-01-21
  12. */
  13. public interface AuditPathsLevelsMapper {
  14. /**
  15. * 查询审批流配置明细级别
  16. *
  17. * @param id 审批流配置明细级别ID
  18. * @return 审批流配置明细级别
  19. */
  20. public AuditPathsLevels selectAuditPathsLevelsById(Long id);
  21. /**
  22. * 查询审批流配置明细级别列表
  23. *
  24. * @param auditPathsLevels 审批流配置明细级别
  25. * @return 审批流配置明细级别集合
  26. */
  27. public List<AuditPathsLevels> selectAuditPathsLevelsList(AuditPathsLevels auditPathsLevels);
  28. /**
  29. * 新增审批流配置明细级别
  30. *
  31. * @param auditPathsLevels 审批流配置明细级别
  32. * @return 结果
  33. */
  34. public int insertAuditPathsLevels(AuditPathsLevels auditPathsLevels);
  35. /**
  36. * 修改审批流配置明细级别
  37. *
  38. * @param auditPathsLevels 审批流配置明细级别
  39. * @return 结果
  40. */
  41. public int updateAuditPathsLevels(AuditPathsLevels auditPathsLevels);
  42. /**
  43. * 删除审批流配置明细级别
  44. *
  45. * @param id 审批流配置明细级别ID
  46. * @return 结果
  47. */
  48. public int deleteAuditPathsLevelsById(Long id);
  49. /**
  50. * 批量删除审批流配置明细级别
  51. *
  52. * @param ids 需要删除的数据ID
  53. * @return 结果
  54. */
  55. public int deleteAuditPathsLevelsByIds(Long[] ids);
  56. /**
  57. * 根据fPid 删除
  58. *
  59. * @param fPid
  60. * @return
  61. */
  62. public int deleteAuditPathsLevelsBypathId(long fPid);
  63. /**
  64. * 查询审批流级次信息
  65. * @param auditItems
  66. * @return
  67. */
  68. List<AuditPathsLevels> queryAuditLevels(AuditItems auditItems);
  69. }