From 45d602719964509214d06ec5173f23e5307d5dfe Mon Sep 17 00:00:00 2001 From: zyx <zyx123456> Date: 星期二, 16 四月 2024 12:24:10 +0800 Subject: [PATCH] 无空库位时,不做空板入库操作 --- src/main/java/com/zy/asrs/service/AgvBasDevpService.java | 18 +++++++++++++++++- 1 files changed, 17 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 3bdd91a..a55f78e 100644 --- a/src/main/java/com/zy/asrs/service/AgvBasDevpService.java +++ b/src/main/java/com/zy/asrs/service/AgvBasDevpService.java @@ -12,9 +12,25 @@ 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); + + public List<Map<String,Object>> selectDevNoAndNumBystationCode(String stationCode); + + List<String> selectAllStationCode(); + + AgvBasDevp selectByDevNo(String devNo); + } -- Gitblit v1.9.1