RejectDataService.java 939 B

1234567891011121314151617181920212223242526272829303132333435
  1. package jnpf.flowable.service;
  2. import jnpf.base.service.SuperService;
  3. import jnpf.exception.WorkFlowException;
  4. import jnpf.flowable.entity.EventLogEntity;
  5. import jnpf.flowable.entity.OperatorEntity;
  6. import jnpf.flowable.entity.RejectDataEntity;
  7. import jnpf.flowable.entity.TaskEntity;
  8. import java.util.List;
  9. /**
  10. * 类的描述
  11. *
  12. * @author JNPF@YinMai Info. Co., Ltd
  13. * @version 5.0.x
  14. * @since 2024/5/8 18:07
  15. */
  16. public interface RejectDataService extends SuperService<RejectDataEntity> {
  17. /**
  18. * 详情
  19. *
  20. * @param id 主键
  21. */
  22. RejectDataEntity getInfo(String id) throws WorkFlowException;
  23. /**
  24. * 新增
  25. *
  26. * @param taskEntity 任务
  27. * @param operatorEntityList 经办集合
  28. * @param nodeCode 节点编码
  29. */
  30. RejectDataEntity create(TaskEntity taskEntity, List<OperatorEntity> operatorEntityList, List<EventLogEntity> eventLogList, String nodeCode);
  31. }