From 83b2c23efd1c1ba3d995193b3240f3d868f4d592 Mon Sep 17 00:00:00 2001 From: zyx <zyx123456> Date: 星期二, 22 八月 2023 16:28:34 +0800 Subject: [PATCH] AGV出入库作业 库存汇总页面 库存规则 分析页加上AGV数据 AGV库存明细统计 AGV库位地图 --- src/main/java/com/zy/asrs/service/AgvWorkService.java | 18 ++++++++++++++++++ 1 files changed, 18 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/zy/asrs/service/AgvWorkService.java b/src/main/java/com/zy/asrs/service/AgvWorkService.java index f97aa5d..3379e72 100644 --- a/src/main/java/com/zy/asrs/service/AgvWorkService.java +++ b/src/main/java/com/zy/asrs/service/AgvWorkService.java @@ -2,6 +2,8 @@ import com.zy.asrs.entity.AgvBasDevp; import com.zy.asrs.entity.AgvWrkMast; +import com.zy.asrs.entity.param.EmptyPlateOutParam; +import com.zy.asrs.entity.param.StockOutParam; import com.zy.common.model.StartupDto; import com.zy.common.model.TaskDto; @@ -24,5 +26,21 @@ */ void pickIn(List<AgvWrkMast> agvWrkMastList); + /* + 鐩樼偣鍑哄簱 + */ + void locCheckOut(StockOutParam param, Long userId); + + /* + 搴撲綅绉昏浆 + */ + void locMove(String sourceLocNo, String targetLocNo, Long userId); + + /* + 绌烘澘鍏ュ簱 + */ + String emptyPlateIn(String sourceStaion, Long userId); + + void emptyPlateOut(EmptyPlateOutParam param, Long userId); } -- Gitblit v1.9.1