wuyouming666
2024-04-29 12787412b95db0187cf7bb05dc6cbdbdaf259143
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.mes.downstorage.service;
 
import com.mes.downstorage.entity.DownStorageCageDetails;
import com.mes.glassinfo.entity.GlassInfo;
 
import java.util.List;
import java.util.Map;
 
public interface DownStorageCageDetailsService {
 
    void addDownStorageCageDetails(DownStorageCageDetails details);
 
    //修改理片笼内信息
    boolean updatedownStorageCageDetails(DownStorageCageDetails details);
    List<DownStorageCageDetails> getCacheLeisure();
    List<DownStorageCageDetails> getCacheOut(int start, int end);
    List<Map> getCacheInfo();
 
 
    List<DownStorageCageDetails> getIsExistIntoCacheByflowcardid(String flowcardid, double width);
 
    List<DownStorageCageDetails> CacheOut(int start, int end);
}