houshuai
2025-06-13 59e896ed4ea42f82057474227ea7ec78cb5a8be9
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
package org.jeecg.modules.dncFlow.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import org.jeecg.common.api.vo.Result;
import org.jeecg.modules.dnc.entity.DocInfo;
import org.jeecg.modules.dncFlow.entity.DispatchFile;
import org.jeecg.modules.dncFlow.vo.DispatchFileFlowTaskVo;
 
import java.lang.reflect.InvocationTargetException;
 
/**
 * @Description: nc程序与电子图版签派
 * @Author: jeecg-boot
 * @Date:   2025-03-19
 * @Version: V1.0
 */
public interface IDispatchFileService extends IService<DispatchFile> {
 
    /**
     * 流程启动,保存对应的数据
     * @param dispatchFile
     * @return
     */
    Result<?> saveDispatchFile(DispatchFile dispatchFile);
 
    /**
     * 文件查询审签流程
     * @param attributionId,attributionType,docId
     * @return
     */
    Result<?> queryDispatchDocFile(String attributionId, String attributionType, String docId);
 
    /**
     * 重新启动
     * @param dispatchFileFlowTaskVo
     */
    Result<?> reStartDispatchFile(DispatchFileFlowTaskVo dispatchFileFlowTaskVo);
 
    /**
     * 审批操作
     * @param dispatchFileFlowTaskVo
     * @return
     */
    Result<?> auditDispatchFile(DispatchFileFlowTaskVo dispatchFileFlowTaskVo);
 
    /**
     * 批量审批操作
     * @param dispatchFileFlowTaskVo
     * @return
     */
    Result<?> auditBatchDispatchFile(DispatchFileFlowTaskVo dispatchFileFlowTaskVo) throws InvocationTargetException, IllegalAccessException;
    /**
     * 查询审签基本信息
     * @param id
     */
    Result<?> queryDispatchFile(String id);
    /**
     * 定型流程
     */
    Result<?> submitProccess(DispatchFile dispatchFile);
}