视频监控页面逻辑更改

This commit is contained in:
lxj
2025-07-28 20:27:58 +08:00
parent 289839651d
commit 90c803dfa3
3 changed files with 57 additions and 37 deletions

View File

@@ -1,4 +1,4 @@
import type { PageQuery, BaseEntity } from '#/api/common';
import type { BaseEntity, PageQuery } from '#/api/common';
export interface DeviceChannelVO {
/**
@@ -51,6 +51,13 @@ export interface DeviceChannelVO {
*/
channelNo: string;
nvrId: string;
nvrFactoryNo: string;
nvrIp: string;
nvrPort: number;
nvrAccount: string;
nvrPwd: string;
nvrChannelNo: string;
}
export interface DeviceChannelForm extends BaseEntity {
@@ -103,7 +110,6 @@ export interface DeviceChannelForm extends BaseEntity {
* 设备通道编号
*/
channelNo?: string;
}
export interface DeviceChannelQuery extends PageQuery {
@@ -153,7 +159,7 @@ export interface DeviceChannelQuery extends PageQuery {
channelNo?: string;
/**
* 日期范围参数
*/
* 日期范围参数
*/
params?: any;
}