自动化立体仓库 - WMS系统
skyouc
昨天 9e6d4880ca1ce6ae5cb9b9dc1b865f0ee9f65fe8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.zy.asrs.service;
 
import com.core.common.R;
import com.zy.asrs.entity.LocCache;
import com.baomidou.mybatisplus.service.IService;
import com.zy.asrs.entity.param.LocMastInitParam;
 
public interface LocCacheService extends IService<LocCache> {
 
 
    /**
     * @author Ryan
     * @date 2025/9/18
     * @description: 初始化库区库位
     * @version 1.0
     */
    R initLocCache(LocMastInitParam param, Long userId);
}