EventLogService.java 687 B

123456789101112131415161718192021222324252627282930313233343536
  1. package jnpf.flowable.service;
  2. import jnpf.base.service.SuperService;
  3. import jnpf.flowable.entity.EventLogEntity;
  4. import java.util.List;
  5. /**
  6. * 类的描述
  7. *
  8. * @author JNPF@YinMai Info. Co., Ltd
  9. * @version 5.0.x
  10. * @since 2024/5/13 16:55
  11. */
  12. public interface EventLogService extends SuperService<EventLogEntity> {
  13. /**
  14. * 列表
  15. */
  16. List<EventLogEntity> getList(String taskId);
  17. /**
  18. * 列表
  19. */
  20. List<EventLogEntity> getList(String taskId, List<String> nodeCode);
  21. /**
  22. * 删除外部节点
  23. */
  24. void delete(String taskId, List<String> nodeCode);
  25. /**
  26. * 新增外部节点
  27. */
  28. void create(EventLogEntity entity);
  29. }