#
vincentlu
2025-12-18 3aefb217aa542c1e80034dd9bd385724fc2292f6
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();
 
}