增加视频监控页面
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

@@ -0,0 +1,64 @@
import type { PageQuery, BaseEntity } from '#/api/common';
export interface DeviceGroupVO {
/**
* 主键id
*/
id: string | number;
/**
* 分组名称
*/
name: string;
/**
* 父编码id(-1 表示根节点)
*/
parentId: string | number;
/**
* 备注
*/
remark: string;
}
export interface DeviceGroupForm extends BaseEntity {
/**
* 主键id
*/
id?: string | number;
/**
* 分组名称
*/
name?: string;
/**
* 父编码id(-1 表示根节点)
*/
parentId?: string | number;
/**
* 备注
*/
remark?: string;
}
export interface DeviceGroupQuery extends PageQuery {
/**
* 分组名称
*/
name?: string;
/**
* 父编码id(-1 表示根节点)
*/
parentId?: string | number;
/**
* 日期范围参数
*/
params?: any;
}