#
vincentlu
21 小时以前 4992e4e60b73a87c3781aabd9367e11e3eaa370e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.zy.acs.manager.manager.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.zy.acs.manager.manager.entity.AreaAgv;
 
import java.util.List;
 
public interface AreaAgvService extends IService<AreaAgv> {
 
    List<Long> queryAgvIdsByAreaIds(List<Long> areaIds);
 
    List<Long> queryAreaIdsByAgvId(Long agvId);
 
    void removeByAgvId(Long agvId);
 
    void removeByAreaId(Long areaId);
 
    List<Long> findAgvIdsWithoutAreaAgv();
 
}