From 829f315f17de8cd04756a6c53b325c368469d246 Mon Sep 17 00:00:00 2001 From: luxiaotao1123 <t1341870251@163.com> Date: 星期三, 17 六月 2020 11:01:34 +0800 Subject: [PATCH] # --- src/main/java/com/zy/asrs/service/WorkService.java | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 53 insertions(+), 0 deletions(-) diff --git a/src/main/java/com/zy/asrs/service/WorkService.java b/src/main/java/com/zy/asrs/service/WorkService.java index f1c2bff..e6e594e 100644 --- a/src/main/java/com/zy/asrs/service/WorkService.java +++ b/src/main/java/com/zy/asrs/service/WorkService.java @@ -1,4 +1,57 @@ package com.zy.asrs.service; +import com.zy.asrs.entity.BasDevp; +import com.zy.asrs.entity.param.EmptyPlateOutParam; +import com.zy.asrs.entity.param.FullStoreParam; +import com.zy.asrs.entity.param.StockOutParam; +import com.zy.common.model.LocDetlDto; + +import java.util.List; + public interface WorkService { + + /** + * 鍏ㄦ澘鍏ュ簱 + * @return 搴撲綅鍙� + */ + String startupFullPutStore(FullStoreParam param, Long userId); + + /** + * 鍏ㄦ澘鍑哄簱 + * @return 搴撲綅鍙� + */ + void startupFullTakeStore(StockOutParam param, Long userId); + + /** + * 鍑哄簱浣滀笟 + * @param staNo 鐩爣绔欑偣 + * @param locDetls 寰呭嚭搴撶墿鏂� + */ + void stockOut(BasDevp staNo, List<LocDetlDto> locDetls, Long userId); + + /** + * 绌烘澘鍏ュ簱 + * @return 搴撲綅鍙� + */ + String emptyPlateIn(Integer sourceStaNo, Long userId); + + /** + * 绌烘澘鍑哄簱 + */ + void emptyPlateOut(EmptyPlateOutParam param, Long userId); + + /** + * 搴撲綅绉昏浆 + */ + void locMove(String sourceLocNo, String locNo, Long userId); + + /** + * 鎵嬪姩瀹屾垚宸ヤ綔妗� + */ + void completeWrkMast(String workNo, Long userId); + + /** + * 鎵嬪姩鍙栨秷宸ヤ綔妗� + */ + void cancelWrkMast(String workNo, Long userId); } -- Gitblit v1.9.1