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