| | |
| | | package com.mes.edgstoragecage.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.github.yulichang.base.MPJBaseService; |
| | | import com.mes.edgstoragecage.entity.EdgStorageCage; |
| | | import com.mes.glassinfo.entity.GlassInfo; |
| | | 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 IService<EdgStorageCage> { |
| | | public interface EdgStorageCageService extends MPJBaseService<EdgStorageCage> { |
| | | |
| | | //查询笼内空格 |
| | | List<EdgStorageCage> selectCacheEmpty(); |
| | | /** |
| | | * 查询笼内空格 |
| | | * @return |
| | | */ |
| | | List<Map<String, Object>> selectCacheEmpty(); |
| | | |
| | | //查询笼内出片顺序详情 |
| | | List<EdgStorageCage> selectCacheOut(); |
| | | /** |
| | | * 查询笼内出片顺序详情 |
| | | * @return |
| | | */ |
| | | List<Map<String, Object>> selectCacheOut(); |
| | | |
| | | //查询笼内详情 |
| | | List<Map> selectCacheInfos(); |
| | | /** |
| | | * 查询笼内详情 |
| | | * @return |
| | | */ |
| | | List<Map<String, Object>> selectEdgStorageCages(); |
| | | |
| | | //添加理片笼信息 传入glassid |
| | | boolean insertCacheInfo(String glassid); |
| | | /** |
| | | * 修改理片笼信息 |
| | | * @param edgStorageCage |
| | | * @return |
| | | */ |
| | | boolean updateEdgStorageCage(EdgStorageCage edgStorageCage); |
| | | |
| | | //修改理片笼内信息 |
| | | boolean updateCacheInfo(String cacheId); |
| | | |
| | | //删除理片笼内信息 |
| | | boolean deleteCacheInfo(String cacheId); |
| | | boolean updateEdgStorageCageDetails(EdgStorageCage edgStorageCage, EdgStorageCageDetails edgStorageCageDetails); |
| | | } |