| | |
| | | |
| | | 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程序与电子图版签派 |
| | |
| | | Result<?> saveDispatchFile(DispatchFile dispatchFile); |
| | | |
| | | /** |
| | | * 文件查询审签流程 |
| | | * @param attributionId,attributionType,docId |
| | | * @return |
| | | */ |
| | | Result<?> queryDispatchDocFile(String attributionId, String attributionType, String docId); |
| | | |
| | | /** |
| | | * 重新启动 |
| | | * @param dispatchFileFlowTaskVo |
| | | */ |
| | |
| | | Result<?> auditDispatchFile(DispatchFileFlowTaskVo dispatchFileFlowTaskVo); |
| | | |
| | | /** |
| | | * 批量审批操作 |
| | | * @param dispatchFileFlowTaskVo |
| | | * @return |
| | | */ |
| | | Result<?> auditBatchDispatchFile(DispatchFileFlowTaskVo dispatchFileFlowTaskVo) throws InvocationTargetException, IllegalAccessException; |
| | | /** |
| | | * 查询审签基本信息 |
| | | * @param id |
| | | */ |
| | | Result<?> queryDispatchFile(String id); |
| | | |
| | | /** |
| | | * 定型流程 |
| | | */ |
| | | Result<?> submitProccess(DispatchFile dispatchFile); |
| | | } |