zhoushihao
2025-03-10 976cee4892eec261f6c2927e788e476e5cc5028e
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
package com.mes.hollow.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.mes.hollow.entity.HollowGlassOutRelationInfo;
import com.mes.hollow.entity.request.HollowTaskRequest;
import com.mes.hollowqueue.entity.HollowGlassQueueInfo;
 
import java.io.IOException;
import java.util.List;
 
/**
 * (HollowGlassOutRelationInfo)表服务接口
 *
 * @author makejava
 * @since 2024-11-30 13:57:29
 */
public interface HollowGlassOutRelationInfoService extends IService<HollowGlassOutRelationInfo> {
 
    HollowGlassOutRelationInfo receiveTask(HollowTaskRequest request);
 
    HollowGlassOutRelationInfo forceOutGlass(HollowTaskRequest request);
 
    Boolean dispatchHollowSwitch(Boolean flag);
 
    List<String> hollowTaskList(int cell);
 
    List<HollowGlassQueueInfo> appointHollowTaskDetails(String flowCardId, int cell);
 
    Boolean startTask(String flowCardId, int cell);
 
    Boolean pauseTask(String flowCardId, int cell);
 
    Boolean finishTask(String flowCardId, int cell);
 
    Boolean deleteHollowTaskDetails(String flowCardId, int cell);
 
    String generateHollowLisecFile(String flowCardId, int cell, int isForce, int isOut) throws IOException;
}