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

183 lines
2.1 KiB
TypeScript
Raw Normal View History

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