#
vincentlu
6 天以前 9741bd10f294f85fd851e4564b33d107987f90b1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.zy.acs.manager.manager.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.zy.acs.manager.manager.entity.Sta;
import com.zy.acs.manager.manager.enums.StaTypeType;
 
import java.util.List;
 
public interface StaService extends IService<Sta> {
 
    Sta selectByStaNo(String staNo);
 
    Sta selectByCode(Long codeId, StaTypeType type);
 
    List<Sta> queryAvailableOutSta(Integer minAvailableQty);
 
    List<Sta> queryAvailableInSta(Integer minAvailableQty);
 
    boolean isRoller(Long staId);
 
    Boolean hasWorkingAgv(Long staId);
 
}