自动化立体仓库 - WMS系统
#
luxiaotao1123
2020-06-11 c49d38e3abd223c5f60d3d5fef53144a2d0c6e25
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package com.zy.asrs.service;
 
import com.baomidou.mybatisplus.service.IService;
import com.zy.asrs.entity.BasDevp;
 
import java.util.List;
 
public interface BasDevpService extends IService<BasDevp> {
 
    List<Integer> getAvailableDevp();
 
    void checkSiteStatus(String devpNo);
 
}