Files
admin-vben5/apps/web-antd/src/api/sis/deviceManage/model.d.ts

250 lines
2.8 KiB
TypeScript
Raw Normal View History

2025-06-29 02:59:14 +08:00
import type { PageQuery, BaseEntity } from '#/api/common';
export interface DeviceManageVO {
/**
* id
*/
id: string | number;
/**
*
*/
deviceNo: string;
/**
*
*/
deviceName: string;
/**
* ip
*/
deviceIp: string;
/**
*
*/
devicePort: number;
/**
*
*/
deviceAccount: string;
/**
*
*/
devicePwd: string;
/**
*
*/
deviceMac: string;
/**
* 线 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 DeviceManageForm extends BaseEntity {
/**
* id
*/
id?: string | number;
/**
*
*/
deviceNo?: string;
/**
*
*/
deviceName?: string;
/**
* ip
*/
deviceIp?: string;
/**
*
*/
devicePort?: number;
/**
*
*/
deviceAccount?: string;
/**
*
*/
devicePwd?: string;
/**
*
*/
deviceMac?: string;
/**
* 线 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 {
/**
*
*/
deviceNo?: string;
/**
*
*/
deviceName?: string;
/**
* ip
*/
deviceIp?: string;
/**
*
*/
devicePort?: number;
/**
*
*/
deviceAccount?: string;
/**
*
*/
devicePwd?: string;
/**
*
*/
deviceMac?: string;
/**
* 线 0:离线 1:在线 2:未知
*/
deviceStatus?: number;
/**
* id
*/
parentId?: string | number;
/**
*
*/
channelNo?: string;
/**
* ip
*/
vcrIp?: string;
/**
*
*/
vcrPort?: number;
/**
*
*/
vcrAccount?: string;
/**
*
*/
vcrPwd?: string;
/**
* id
*/
accessControlId?: string | number;
/**
*
*/
params?: any;
}