1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| 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 ardCameras 相机设备
| * @return 相机设备集合
| */
| public List<ArdCameras> selectArdCamerasList(ArdCameras ardCameras);
|
| }
|
|