package com.mes.downstorage.service; import com.baomidou.mybatisplus.extension.service.IService; import com.mes.downstorage.entity.DownStorageCage; import com.mes.downstorage.entity.DownStorageCageDetails; import java.util.List; import java.util.Map; /** *

* 服务类 *

* * @author zhoush * @since 2024-03-27 */ public interface DownStorageCageService extends IService { public List gettask(); // List> selectCacheLeisure(); List getCacheLeisure(); List getCacheOut(int start, int end); List getCacheInfo(); List getIsExistIntoCacheByLayoutAndSequence(Integer tempering_layout_id, Integer tempering_feed_sequence, double width); List getIsExistIntoCacheByLayout(Integer tempering_layout_id, double width); List getIsExistIntoCacheByflowcardid(String flowcardid, double width); List IsExistIntoCacheByflowcardid(String flowcardid, double width); List selectCacheEmpty(); boolean processInto(String Number); boolean processOut(); }