#
luxiaotao1123
4 天以前 c402e77c8a141b05d5ef62b73306ba7322585bb2
1
2
3
4
5
6
7
8
9
10
11
12
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);
 
}