zhangjian
2023-08-21 00b8c89efde1fff652da1ce0fe2df389404868ef
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
60
61
package com.ruoyi.device.cameracalibration.service;
 
import java.util.List;
import com.ruoyi.device.cameracalibration.domain.ArdCamerasCalibration;
 
/**
 * 光电标定Service接口
 *
 * @author 刘苏义
 * @date 2023-02-10
 */
public interface IArdCamerasCalibrationService
{
    /**
     * 查询光电标定
     *
     * @param id 光电标定主键
     * @return 光电标定
     */
    public ArdCamerasCalibration selectArdCamerasCalibrationById(String id);
 
    /**
     * 查询光电标定列表
     *
     * @param ardCamerasCalibration 光电标定
     * @return 光电标定集合
     */
    public List<ArdCamerasCalibration> selectArdCamerasCalibrationList(ArdCamerasCalibration ardCamerasCalibration);
 
    /**
     * 新增光电标定
     *
     * @param ardCamerasCalibration 光电标定
     * @return 结果
     */
    public int insertArdCamerasCalibration(ArdCamerasCalibration ardCamerasCalibration);
 
    /**
     * 修改光电标定
     *
     * @param ardCamerasCalibration 光电标定
     * @return 结果
     */
    public int updateArdCamerasCalibration(ArdCamerasCalibration ardCamerasCalibration);
 
    /**
     * 批量删除光电标定
     *
     * @param ids 需要删除的光电标定主键集合
     * @return 结果
     */
    public int deleteArdCamerasCalibrationByIds(String[] ids);
 
    /**
     * 删除光电标定信息
     *
     * @param id 光电标定主键
     * @return 结果
     */
    public int deleteArdCamerasCalibrationById(String id);
}