区域摄像头名称
This commit is contained in:
@@ -25,6 +25,12 @@ public interface RemoteDeviceService {
|
||||
*/
|
||||
Boolean updateDeviceState(RemoteSisDeviceManage item);
|
||||
|
||||
/**
|
||||
* 根据id查询的设备信息
|
||||
*
|
||||
*/
|
||||
RemoteSisDeviceManage queryDeviceById(Long id);
|
||||
|
||||
/**
|
||||
* 查询设备通道信息
|
||||
*
|
||||
|
@@ -2,11 +2,17 @@ package org.dromara.sis.api.domain;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serial;
|
||||
import java.io.Serializable;
|
||||
|
||||
/**
|
||||
* 设备远程调用对象
|
||||
*/
|
||||
@Data
|
||||
public class RemoteSisDeviceManage {
|
||||
public class RemoteSisDeviceManage implements Serializable {
|
||||
|
||||
@Serial
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* 主键id
|
||||
@@ -63,8 +69,26 @@ public class RemoteSisDeviceManage {
|
||||
*/
|
||||
private Long groupId;
|
||||
|
||||
/**
|
||||
* 租户编号
|
||||
*/
|
||||
private String tenantId;
|
||||
|
||||
/**
|
||||
* 楼层id
|
||||
*/
|
||||
private Long floorId;
|
||||
|
||||
/**
|
||||
* 是否支持人脸比对
|
||||
*/
|
||||
private Boolean isComparison;
|
||||
|
||||
/**
|
||||
* 设备经度
|
||||
*/
|
||||
private Double lon;
|
||||
|
||||
/**
|
||||
* 设备维度
|
||||
*/
|
||||
private Double lat;
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user