zhoushihao
2 天以前 4e3b8155722b66e25df3c6fd42cc586b68dea391
hangzhoumesParent/moduleService/CacheGlassModule/src/main/java/com/mes/edgstoragecage/service/EdgStorageCageService.java
@@ -3,9 +3,10 @@
import com.github.yulichang.base.MPJBaseService;
import com.mes.edgstoragecage.entity.EdgStorageCage;
import com.mes.edgstoragecage.entity.EdgStorageCageDetails;
import com.mes.edgstoragecage.entity.vo.EdgSlotRemainVO;
import com.mes.edgstoragecage.entity.vo.EdgStorageCageVO;
import java.util.List;
import java.util.Map;
/**
 * <p>
@@ -23,23 +24,15 @@
     *
     * @return
     */
    EdgStorageCage selectNearestEmpty(int currentSlot, boolean flag);
    List<EdgStorageCage> selectCacheEmpty();
    EdgStorageCage selectNearestEmpty(Integer currentCell, int deviceId, boolean flag);
    /**
     * 查询笼内出片顺序详情
     *
     * 按照设备号返回对应的笼内详情数据
     * @param deviceId
     * @return
     */
    List<Map<String, Object>> selectCacheOut();
    List<EdgStorageCageVO> selectEdgStorageCagesByDeviceId(int deviceId);
    /**
     * 查询笼内详情
     *
     * @return
     */
    List<Map<String, Object>> selectEdgStorageCages();
    /**
     * 修改理片笼信息
@@ -69,4 +62,5 @@
     */
    EdgStorageCage getEdgStorageCageBySize(int deviceId, double width, double height, int slot);
    void resetSlotRemainWidth(List<EdgSlotRemainVO> edgSlotRemainVOS);
}