Junjie
1 天以前 03c3ae747f82ad22c761c79e7b1c0e0031c57d41
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.extension.service.IService;
import com.zy.asrs.entity.LocMast;
 
import java.util.List;
 
public interface LocMastService extends IService<LocMast> {
 
    LocMast queryByLoc(String locNo);
 
    //查询指定楼层的库位数据
    List<LocMast> selectLocByLev(Integer lev);
 
    //查询所有楼层
    List<Integer> getLevList();
}