自动化立体仓库 - WCS系统
Junjie
2023-11-28 8500e3aa9c836fef5cd4ff2ce54cf3a01a78eef9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.zy.asrs.service;
 
public interface WorkService {
 
    /**
     * 手动完成工作档
     */
    void completeWrkMast(String workNo, Long userId);
 
    /**
     * 手动取消工作档
     */
    void cancelWrkMast(String workNo, Long userId);
 
}