zhoushihao
2025-10-09 266ca8c80300d479351eed50fee5a30751a22fda
hangzhoumesParent/moduleService/hollowGlassModule/src/main/java/com/mes/hollow/service/HollowGlassOutRelationInfoService.java
@@ -1,12 +1,17 @@
package com.mes.hollow.service;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.baomidou.mybatisplus.extension.service.IService;
import com.mes.hollow.entity.HollowGlassOutRelationInfo;
import com.mes.hollow.entity.dto.OrderDetailsDTO;
import com.mes.hollow.entity.request.HollowHistoryTaskRequest;
import com.mes.hollow.entity.request.HollowTaskRequest;
import com.mes.hollowqueue.entity.HollowGlassQueueInfo;
import com.mes.largenscreen.entity.PieChartVO;
import java.io.IOException;
import java.util.List;
import java.util.Map;
/**
 * (HollowGlassOutRelationInfo)表服务接口
@@ -22,18 +27,26 @@
    Boolean dispatchHollowSwitch(Boolean flag);
    Boolean priorityHollowSwitch(Boolean flag);
    List<String> hollowTaskList(int cell);
    List<HollowGlassQueueInfo> appointHollowTaskDetails(String flowCardId, int cell);
    Map<String, List<HollowGlassQueueInfo>> appointHollowTaskDetails(int cell);
    Boolean startTask(String flowCardId, int cell);
    Boolean startTask(int cell);
    Boolean pauseTask(String flowCardId, int cell);
    Boolean pauseTask(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;
    Page<HollowGlassOutRelationInfo> queryHollowHistoryTask(HollowHistoryTaskRequest request);
    List<PieChartVO> queryPieChart();
    OrderDetailsDTO queryProductNameByFlowCardId(String flowCardId);
}