自动化立体仓库 - WMS系统
#
野心家
2023-10-07 6c2fc56cfff7b3cade21fb1f3e1f2f229ce1e023
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.zy.asrs.service;
 
import com.baomidou.mybatisplus.service.IService;
import com.zy.asrs.entity.AgvBasDevp;
 
import java.util.List;
import java.util.Map;
 
public interface AgvBasDevpService extends IService<AgvBasDevp> {
 
    public void clearBasDevp();
 
    public void initBasDevp();
 
    public void updateLocStsAndBarcodeByDevNo(String devNo, String locSts, String barcode);
 
    public Map<String, Object> getAgvBasDevpDtoByStationCode(String stationCode);
 
    public List<String> getAvailableEmptyInSite();
}