‘liusuyi’
2023-07-10 2607eb0f1105f753d48d8eafe7799b6efb2c66ba
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
package com.ard.alarm.camera.service;
 
import java.util.List;
import com.ard.alarm.camera.domain.ArdCameras;
 
 
 
/**
 * 相机设备Service接口
 * 
 * @author 刘苏义
 * @date 2023-02-11
 */
public interface IArdCamerasService 
{
    /**
     * 查询相机设备
     * 
     * @param id 相机设备主键
     * @return 相机设备
     */
    public ArdCameras selectArdCamerasById(String id);
 
    /**
     * 查询相机设备列表
     * 
     * @param ardCameras 相机设备
     * @return 相机设备集合
     */
    public List<ArdCameras> selectArdCamerasList(ArdCameras ardCameras);
 
}