From 15b6a3e0d236ade3d4bd69f3b6ca9e4e420e455c Mon Sep 17 00:00:00 2001
From: zhangc <zc@123>
Date: 星期一, 20 一月 2025 15:17:34 +0800
Subject: [PATCH] 标记agvLocMove方法为Deprecated

---
 src/main/java/com/zy/asrs/service/AgvBasDevpService.java |   22 +++++++++++++++++++++-
 1 files changed, 21 insertions(+), 1 deletions(-)

diff --git a/src/main/java/com/zy/asrs/service/AgvBasDevpService.java b/src/main/java/com/zy/asrs/service/AgvBasDevpService.java
index 755e724..dab9548 100644
--- a/src/main/java/com/zy/asrs/service/AgvBasDevpService.java
+++ b/src/main/java/com/zy/asrs/service/AgvBasDevpService.java
@@ -3,6 +3,7 @@
 import com.baomidou.mybatisplus.service.IService;
 import com.zy.asrs.entity.AgvBasDevp;
 
+import java.util.List;
 import java.util.Map;
 
 public interface AgvBasDevpService extends IService<AgvBasDevp> {
@@ -11,7 +12,26 @@
 
     public void initBasDevp();
 
-    public void updateLocStsAndBarcodeByDevNo(String devNo, String locSts, String barcode);
+    public void updateLocStsAndBarcodeByDevNo(String devNo, String locSts, String barcode, Short containerType);
 
     public Map<String, Object> getAgvBasDevpDtoByStationCode(String stationCode);
+
+    public List<String> getAvailableEmptyInSite();
+
+    public AgvBasDevp getByDevNo(String devNo);
+
+    public AgvBasDevp selectEmptyDevpByStation(String stationCode);
+
+    List<AgvBasDevp> getBasDevpByNoCacheShelves();
+
+    List<String> selectCacheShelvesStationCodeByFloor(int floor);
+    List<String> selectCacheShelvesStationCodeByLocType(short locType, int floor);
+    List<String> selectCacheShelvesStationCodeByLocType2(short locType, int floor);
+
+    public List<Map<String,Object>> selectDevNoAndNumBystationCode(String stationCode);
+
+    List<String> selectAllStationCode();
+
+    AgvBasDevp selectByDevNo(String devNo);
+
 }

--
Gitblit v1.9.1