增加视频监控页面
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,159 @@
import type { PageQuery, BaseEntity } from '#/api/common';
export interface DeviceChannelVO {
/**
* 主键id
*/
id: string | number;
/**
* 设备id
*/
deviceId: string | number;
/**
* 设备名称
*/
deviceName: string;
/**
* 通道分组组id
*/
groupId: string | number;
/**
* 设备ip
*/
deviceIp: string;
/**
* 设备端口
*/
devicePort: number;
/**
* 设备账号
*/
deviceAccount: string;
/**
* 设备密码
*/
devicePwd: string;
/**
* 设备
*/
deviceMac: string;
/**
* 设备通道编号
*/
channelNo: string;
}
export interface DeviceChannelForm extends BaseEntity {
/**
* 主键id
*/
id?: string | number;
/**
* 设备id
*/
deviceId?: string | number;
/**
* 设备名称
*/
deviceName?: string;
/**
* 通道分组组id
*/
groupId?: string | number;
/**
* 设备ip
*/
deviceIp?: string;
/**
* 设备端口
*/
devicePort?: number;
/**
* 设备账号
*/
deviceAccount?: string;
/**
* 设备密码
*/
devicePwd?: string;
/**
* 设备
*/
deviceMac?: string;
/**
* 设备通道编号
*/
channelNo?: string;
}
export interface DeviceChannelQuery extends PageQuery {
/**
* 设备id
*/
deviceId?: string | number;
/**
* 设备名称
*/
deviceName?: string;
/**
* 通道分组组id
*/
groupId?: string | number;
/**
* 设备ip
*/
deviceIp?: string;
/**
* 设备端口
*/
devicePort?: number;
/**
* 设备账号
*/
deviceAccount?: string;
/**
* 设备密码
*/
devicePwd?: string;
/**
* 设备
*/
deviceMac?: string;
/**
* 设备通道编号
*/
channelNo?: string;
/**
* 日期范围参数
*/
params?: any;
}