IPmFlowChartService.java 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. package com.ozs.pm.service;
  2. import com.ozs.pm.doman.PmFlowChart;
  3. import java.util.List;
  4. /**
  5. * 流程图Service接口
  6. *
  7. * @author ruoyi
  8. * @date 2023-01-25
  9. */
  10. public interface IPmFlowChartService
  11. {
  12. /**
  13. * 查询流程图
  14. *
  15. * @param flowChartId 流程图主键
  16. * @return 流程图
  17. */
  18. public PmFlowChart selectPmFlowChartByFlowChartId(Long flowChartId);
  19. /**
  20. * 查询流程图列表
  21. *
  22. * @param pmFlowChart 流程图
  23. * @return 流程图集合
  24. */
  25. public List<PmFlowChart> selectPmFlowChartList(PmFlowChart pmFlowChart);
  26. /**
  27. * 新增流程图
  28. *
  29. * @param pmFlowChart 流程图
  30. * @return 结果
  31. */
  32. public int insertPmFlowChart(PmFlowChart pmFlowChart);
  33. /**
  34. * 修改流程图
  35. *
  36. * @param pmFlowChart 流程图
  37. * @return 结果
  38. */
  39. public int updatePmFlowChart(PmFlowChart pmFlowChart);
  40. /**
  41. * 批量删除流程图
  42. *
  43. * @param flowChartIds 需要删除的流程图主键集合
  44. * @return 结果
  45. */
  46. public int deletePmFlowChartByFlowChartIds(Long[] flowChartIds);
  47. /**
  48. * 删除流程图信息
  49. *
  50. * @param flowChartId 流程图主键
  51. * @return 结果
  52. */
  53. public int deletePmFlowChartByFlowChartId(Long flowChartId);
  54. }