| | |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import org.jeecg.common.api.vo.Result; |
| | | import org.jeecg.modules.dnc.entity.DocFile; |
| | | import org.jeecg.modules.dnc.response.QueryPageResponseResult; |
| | | import org.jeecg.modules.dncFlow.entity.AssignFileStream; |
| | | import org.jeecg.modules.dncFlow.ext.AssignFileStreamExt; |
| | |
| | | import org.jeecg.modules.dncFlow.request.AssignFileRequest; |
| | | import org.jeecg.modules.dncFlow.request.AssignFileStreamQueryRequest; |
| | | import org.jeecg.modules.dncFlow.vo.AssignFlowTaskVo; |
| | | import org.jeecg.modules.mdc.entity.MdcEquipment; |
| | | |
| | | public interface IAssignFileStreamService extends IService<AssignFileStream> { |
| | | /** |
| | |
| | | |
| | | /** |
| | | * 审批服务 |
| | | * @param taskId |
| | | * @param streamId |
| | | * @param stream |
| | | * @param assignFlowTaskVo |
| | | * @return |
| | | */ |
| | | boolean approveAssignFile(AssignFlowTaskVo assignFlowTaskVo); |
| | |
| | | * @return |
| | | */ |
| | | Boolean getFlowableEnable(); |
| | | |
| | | void handleFileTransfer(MdcEquipment mdcEquipment, DocFile docFile); |
| | | } |