| | |
| | | import com.ruoyi.alarmpoints.well.domain.ArdAlarmpointsWell; |
| | | import com.ruoyi.device.camera.domain.ArdCameras; |
| | | import com.ruoyi.device.camera.domain.CameraCmd; |
| | | import com.ruoyi.device.camera.domain.DeptAndCamerasDto; |
| | | import com.ruoyi.scheduling.domian.SchedulingParam; |
| | | |
| | | /** |
| | | * 相机设备Service接口 |
| | | * |
| | | * |
| | | * @author 刘苏义 |
| | | * @date 2023-02-11 |
| | | */ |
| | | public interface IArdCamerasService |
| | | public interface IArdCamerasService |
| | | { |
| | | /** |
| | | * 查询相机设备 |
| | | * |
| | | * |
| | | * @param id 相机设备主键 |
| | | * @return 相机设备 |
| | | */ |
| | |
| | | |
| | | /** |
| | | * 查询相机设备列表 |
| | | * |
| | | * |
| | | * @param ardCameras 相机设备 |
| | | * @return 相机设备集合 |
| | | */ |
| | |
| | | public List<ArdCameras> selectArdCamerasListNoDataScope(ArdCameras ardCameras); |
| | | /** |
| | | * 新增相机设备 |
| | | * |
| | | * |
| | | * @param ardCameras 相机设备 |
| | | * @return 结果 |
| | | */ |
| | |
| | | |
| | | /** |
| | | * 修改相机设备 |
| | | * |
| | | * |
| | | * @param ardCameras 相机设备 |
| | | * @return 结果 |
| | | */ |
| | |
| | | |
| | | /** |
| | | * 批量删除相机设备 |
| | | * |
| | | * |
| | | * @param ids 需要删除的相机设备主键集合 |
| | | * @return 结果 |
| | | */ |
| | |
| | | |
| | | /** |
| | | * 删除相机设备信息 |
| | | * |
| | | * |
| | | * @param id 相机设备主键 |
| | | * @return 结果 |
| | | */ |
| | |
| | | * @修改人和其它信息 |
| | | */ |
| | | public Map getChildDeptAndCamera(Boolean disabled); |
| | | |
| | | public List<Map<String, Object>> getChildDeptAndCameraOwn(Boolean disabled); |
| | | public List<DeptAndCamerasDto> getChildDeptAndCamera(); |
| | | |
| | | public TreeMap getNearCamerasBycoordinate(CameraCmd cmd); |
| | | |
| | |
| | | * @return 结果 |
| | | */ |
| | | public String checkCameraIpAndPortUnique(ArdCameras camera); |
| | | |
| | | public List<Map<String,Object>> getCamerasByDeptId(Long deptId,String userId); |
| | | |
| | | public Boolean getCameraOperationByCameraId(String id,String userId); |
| | | |
| | | public Map<String,Object> getChannelByCameraId(String id); |
| | | } |