#
luxiaotao1123
2024-03-06 1da9fa3c8827ef6a0cc7f79040010c1598bc0436
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);
 
}