增加视频监控页面
Some checks are pending
Gitea Actions Demo / Explore-Gitea-Actions (push) Waiting to run

This commit is contained in:
15683799673
2025-07-19 09:09:14 +08:00
parent 5f19bb22a8
commit 2bb661e32b
14 changed files with 896 additions and 143 deletions

View File

@@ -1,4 +1,4 @@
import type { PageQuery, BaseEntity } from '#/api/common';
import type { BaseEntity, PageQuery } from '#/api/common';
export interface DeviceManageVO {
/**
@@ -80,7 +80,6 @@ export interface DeviceManageVO {
* 门禁id
*/
accessControlId: string | number;
}
export interface DeviceManageForm extends BaseEntity {
@@ -128,42 +127,6 @@ export interface DeviceManageForm extends BaseEntity {
* 设备在线状态 0:离线 1:在线 2:未知
*/
deviceStatus?: number;
/**
* 父级设备id
*/
parentId?: string | number;
/**
* 设备通道编号
*/
channelNo?: string;
/**
* 录像机ip
*/
vcrIp?: string;
/**
* 录像机端口
*/
vcrPort?: number;
/**
* 录像机账号
*/
vcrAccount?: string;
/**
* 录像机密码
*/
vcrPwd?: string;
/**
* 门禁id
*/
accessControlId?: string | number;
}
export interface DeviceManageQuery extends PageQuery {
@@ -208,42 +171,7 @@ export interface DeviceManageQuery extends PageQuery {
deviceStatus?: number;
/**
* 父级设备id
* 日期范围参数
*/
parentId?: string | number;
/**
* 设备通道编号
*/
channelNo?: string;
/**
* 录像机ip
*/
vcrIp?: string;
/**
* 录像机端口
*/
vcrPort?: number;
/**
* 录像机账号
*/
vcrAccount?: string;
/**
* 录像机密码
*/
vcrPwd?: string;
/**
* 门禁id
*/
accessControlId?: string | number;
/**
* 日期范围参数
*/
params?: any;
}