| | |
| | | |
| | | 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.util.List; |
| | | |
| | | /** |
| | | * (HollowGlassOutRelationInfo)表服务接口 |
| | |
| | | */ |
| | | public interface HollowGlassOutRelationInfoService extends IService<HollowGlassOutRelationInfo> { |
| | | |
| | | HollowGlassOutRelationInfo receiveTask(String flowCardId, int cell, int totalPairQuantity); |
| | | HollowGlassOutRelationInfo receiveTask(HollowTaskRequest request); |
| | | |
| | | HollowGlassOutRelationInfo forceOutGlass(String flowCardId, int cell, int totalPairQuantity); |
| | | 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); |
| | | } |
| | | |