zhoushihao
2024-05-09 47a468a30e24567783c1319cbd7874ef1226ddd5
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
package com.mes.edgstoragecage.service;
 
import com.github.yulichang.base.MPJBaseService;
import com.mes.edgstoragecage.entity.EdgStorageCage;
import com.mes.edgstoragecage.entity.EdgStorageCageDetails;
 
import java.util.List;
import java.util.Map;
 
/**
 * <p>
 * 服务类
 * </p>
 *
 * @author zhoush
 * @since 2024-04-07
 */
public interface EdgStorageCageService extends MPJBaseService<EdgStorageCage> {
 
    /**
     * 查询笼内离指定格子最近空格
     * @return
     */
    EdgStorageCage selectNearestEmpty(int currentSlot);
 
    /**
     * 查询笼内空格
     * @return
     */
    List<EdgStorageCage> selectCacheEmpty();
 
    /**
     * 查询笼内出片顺序详情
     * @return
     */
    List<Map<String, Object>> selectCacheOut();
 
    /**
     * 查询笼内详情
     * @return
     */
    List<Map<String, Object>> selectEdgStorageCages();
 
    /**
     * 修改理片笼信息
     * @param edgStorageCage
     * @return
     */
    boolean updateEdgStorageCage(EdgStorageCage edgStorageCage);
 
    boolean updateEdgStorageCageDetails(int edgStorageCageId, EdgStorageCageDetails edgStorageCageDetails);
}