#
Junjie
2024-01-05 96f09fb7eb450bac7e94565838f10d945f35af57
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.zy.asrs.common.wms.service;
 
import com.zy.asrs.common.domain.param.MobileAdjustParam;
import com.zy.asrs.common.openapi.entity.param.CombParam;
 
public interface MobileService {
 
    /**
     * 组托
     */
    void comb(CombParam param, Long userId, Long hostId);
 
    /**
     * 盘点
     */
    void adjust(MobileAdjustParam param, Long userId, Long hostId);
 
}