自动化立体仓库 - WMS系统
#
luxiaotao1123
2020-06-16 d5aea757321140614637b6bdfbe6c28c510c85ea
src/main/java/com/zy/asrs/service/WorkService.java
@@ -7,12 +7,33 @@
    /**
     * 全板入库
     * @return 库位号
     */
    void startupFullStore(FullStoreParam param, Long userId);
    String startupFullPutStore(FullStoreParam param, 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);
}