#
vincentlu
1 天以前 dcee04e577389842f31d6c8b114e046c837bb05e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.zy.acs.manager.manager.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.zy.acs.manager.manager.entity.Travel;
 
public interface TravelService extends IService<Travel> {
 
    void checkFinish(Long travelId);
 
    void finishAll(Long agvId);
 
    Travel findRunningTravel(Long agvId);
 
    Travel findRollerWaitingTravel(Long agvId, Long code);
 
    Boolean hasRollerWaiting(Long agvId);
 
    Boolean markRollerWaiting(Long travelId, Long codeId);
 
    Boolean clearRollerWaiting(Long travelId);
 
}