自动化立体仓库 - WMS系统
#
luxiaotao1123
2020-06-10 b8162b2c9193df92a704a78cc49db6d7da152f89
1
2
3
4
5
6
7
8
9
10
11
12
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();
 
}