package com.mes.hollow.service; import com.baomidou.mybatisplus.extension.service.IService; import com.mes.hollow.entity.HollowBigStorageCageDetails; import com.mes.hollow.entity.dto.BigStorageSequenceDTO; import com.mes.hollow.entity.dto.FlowCardGlassInfoDTO; import com.mes.hollow.entity.dto.FlowCardVirtualSlotDTO; import com.mes.hollow.entity.dto.UpdateHollowBigStorageCageDTO; import java.util.List; /** * (HollowBigStorageCageDetails)表服务接口 * * @author makejava * @since 2024-11-21 09:23:12 */ public interface HollowBigStorageCageDetailsService extends IService { void updateBySlot(List storageCageDTOList, Integer glassStateIn); List hollowIsAll(String flow_card_id, Integer totalLayer, Boolean flag); List queryIsAllNeedDispatchVirtualSlot(); List queryNeedDispatchSlot(FlowCardVirtualSlotDTO flowCardVirtualSlotDTO); List queryOutGlassList(String flowCardId, int cell); }