FlowFormRelationService.java 813 B

1234567891011121314151617181920212223242526272829303132333435
  1. package jnpf.base.service;
  2. import jnpf.base.entity.FlowFormRelationEntity;
  3. import java.util.List;
  4. /**
  5. * 流程表单关联
  6. *
  7. * @author JNPF开发平台组
  8. * @version V3.4.2
  9. * @copyright 引迈信息技术有限公司
  10. * @date 2022/6/30 18:01
  11. */
  12. public interface FlowFormRelationService extends SuperService<FlowFormRelationEntity> {
  13. /**
  14. * 根据流程id保存关联表单
  15. *
  16. * @param
  17. * @return
  18. * @copyright 引迈信息技术有限公司
  19. * @date 2022/10/26
  20. */
  21. void saveFlowIdByFormIds(String flowId, List<String> formIds);
  22. /**
  23. * 根据表单id查询是否存在引用
  24. *
  25. * @param
  26. * @return
  27. * @copyright 引迈信息技术有限公司
  28. * @date 2022/10/26
  29. */
  30. List<FlowFormRelationEntity> getListByFormId(String formId);
  31. }