chengf
2025-10-28 2807cca4b6f2e8af204d798679dcee78e695ee28
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
package com.ruoyi.business.aidetection.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.business.aidetection.domain.AvObject;
import com.ruoyi.business.aidetection.domain.vo.AvObjectVo;
import com.ruoyi.common.core.page.TableDataInfo;
import org.springframework.stereotype.Service;
 
import java.util.List;
 
/**
 * 识别物体Service接口
 *
 * @author yuankun
 * @date 2024-04-06
 */
@Service
public interface AvObjectService extends IService<AvObject> {
 
    /**
     * 分页查询
     *
     * @param entity
     * @return
     */
    TableDataInfo<AvObject> queryList(AvObjectVo entity);
 
    /**
     * 查询全部
     *
     * @param entity
     * @return
     */
    List<AvObject> queryAll(AvObjectVo entity);
 
    /**
     * 根据ID查询
     *
     * @param id
     * @return
     */
    AvObjectVo queryById(Long id);
 
 
    /**
     * 根据对象编码查询对象信息。
     *
     * @param objectCode 对象编码
     * @return 返回包含对象信息的 AvObjectVo 对象
     */
    AvObject queryByObjectCode(String objectCode);
    /**
     * 根据对象编码查询对象信息。
     *
     * @param objectCode 对象编码
     * @return 返回包含对象信息的 AvObjectVo 对象
     */
    List<AvObject> queryByObjectCodes(List<String> objectCode);
}