自动化立体仓库 - WMS系统
#
luxiaotao1123
2020-06-13 250e5afb499bfa4bb96cbcbfd335b678dd076f5e
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();
 
    BasDevp checkSiteStatus(Integer devpNo);
 
}