zhoushihao
2024-12-03 cf33278c73767f72e35a4898c23765f52a3bfd1d
hangzhoumesParent/moduleService/howllowGlassModule/src/main/java/com/mes/hollow/service/HollowBigStorageCageDetailsService.java
New file
@@ -0,0 +1,31 @@
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<HollowBigStorageCageDetails> {
    void updateBySlot(List<UpdateHollowBigStorageCageDTO> storageCageDTOList, Integer glassStateIn);
    List<FlowCardGlassInfoDTO> hollowIsAll(String flow_card_id, Integer totalLayer, Boolean flag);
    List<FlowCardVirtualSlotDTO> queryIsAllNeedDispatchVirtualSlot();
    List<BigStorageSequenceDTO> queryNeedDispatchSlot(FlowCardVirtualSlotDTO flowCardVirtualSlotDTO);
    List<HollowBigStorageCageDetails> queryOutGlassList(String flowCardId, int cell);
}