zhoushihao
2024-12-03 c823892f961b266199731ddd365d2dd4af4bf382
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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);
}