自动化立体仓库 - WMS系统
zyx
2023-08-01 8359572be2164aec32219fafd5e72f4035067dff
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package com.zy.asrs.service;
 
import com.baomidou.mybatisplus.service.IService;
import com.zy.asrs.entity.AgvBasDevp;
 
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);
}