wuyouming666
2024-04-18 e8d3676793d4194485afec7940aaf355af594901
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
package com.mes.downstorage.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.mes.downstorage.entity.DownStorageCage;
 
import java.util.List;
import java.util.Map;
 
/**
 * <p>
 * 服务类
 * </p>
 *
 * @author zhoush
 * @since 2024-03-27
 */
public interface DownStorageCageService extends IService<DownStorageCage> {
    public List<Map> gettask();
 
    //    List<Map<String, Object>> selectCacheLeisure();
    List<Map> getCacheLeisure();
    List<Map> getCacheOut(int start, int end);
    List<Map> getCacheInfo();
    List<Map> getIsExistIntoCacheByLayoutAndSequence(Integer tempering_layout_id, Integer tempering_feed_sequence, double width);
    List<Map> getIsExistIntoCacheByLayout(Integer tempering_layout_id, double width);
 
}