package com.mes.edgstoragecage.service; import com.baomidou.mybatisplus.extension.service.IService; import com.mes.edgstoragecage.entity.EdgStorageCage; import com.mes.glassinfo.entity.GlassInfo; import java.util.List; import java.util.Map; /** *

* 服务类 *

* * @author zhoush * @since 2024-04-07 */ public interface EdgStorageCageService extends IService { //查询笼内空格 List selectCacheEmpty(); //查询笼内出片顺序详情 List selectCacheOut(); //查询笼内详情 List selectCacheInfos(); //添加理片笼信息 传入glassid boolean insertCacheInfo(String glassid); //修改理片笼内信息 boolean updateCacheInfo(String cacheId); //删除理片笼内信息 boolean deleteCacheInfo(String cacheId); }