hangzhoumesParent/moduleService/howllowGlassModule/src/main/java/com/mes/hollow/service/HollowGlassOutRelationInfoService.java
@@ -2,6 +2,11 @@
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)表服务接口
@@ -11,6 +16,24 @@
 */
public interface HollowGlassOutRelationInfoService extends IService<HollowGlassOutRelationInfo> {
    HollowGlassOutRelationInfo receiveTask(String flowCardId, int cell);
    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) throws IOException;
}