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

65 lines
833 B
TypeScript
Raw Normal View History

2025-07-19 09:09:14 +08:00
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;
}