#
vincentlu
4 天以前 6cbb420754e6e29fa134a6afca4514b8dfd62918
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);
 
}