AuditPathsActsMapper.java 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. package com.ruoyi.approvalFlow.mapper;
  2. import com.ruoyi.approvalFlow.domain.AuditPathsActs;
  3. import java.util.List;
  4. /**
  5. * 审批流配置明细Mapper接口
  6. *
  7. * @author ruoyi
  8. * @date 2021-01-21
  9. */
  10. public interface AuditPathsActsMapper {
  11. /**
  12. * 查询审批流配置明细
  13. *
  14. * @param id 审批流配置明细ID
  15. * @return 审批流配置明细
  16. */
  17. public AuditPathsActs selectAuditPathsActsById(Long id);
  18. /**
  19. * 查询审批流配置明细列表
  20. *
  21. * @param auditPathsActs 审批流配置明细
  22. * @return 审批流配置明细集合
  23. */
  24. public List<AuditPathsActs> selectAuditPathsActsList(AuditPathsActs auditPathsActs);
  25. /**
  26. * 新增审批流配置明细
  27. *
  28. * @param auditPathsActs 审批流配置明细
  29. * @return 结果
  30. */
  31. public int insertAuditPathsActs(AuditPathsActs auditPathsActs);
  32. /**
  33. * 修改审批流配置明细
  34. *
  35. * @param auditPathsActs 审批流配置明细
  36. * @return 结果
  37. */
  38. public int updateAuditPathsActs(AuditPathsActs auditPathsActs);
  39. /**
  40. * 删除审批流配置明细
  41. *
  42. * @param id 审批流配置明细ID
  43. * @return 结果
  44. */
  45. public int deleteAuditPathsActsById(Long id);
  46. /**
  47. * 批量删除审批流配置明细
  48. *
  49. * @param ids 需要删除的数据ID
  50. * @return 结果
  51. */
  52. public int deleteAuditPathsActsByIds(Long[] ids);
  53. /**
  54. * 查询审批配置是否被使用
  55. * @param auditPathsActs 条件
  56. * @return
  57. */
  58. int selectCountAuditPathsActs(AuditPathsActs auditPathsActs);
  59. /**
  60. * 查询数量
  61. * @param auditPathsActs
  62. * @return
  63. */
  64. int selectAuditPathsActsCount(AuditPathsActs auditPathsActs);
  65. }