设备管理

This commit is contained in:
FLL
2025-07-15 17:31:12 +08:00
parent be122e973f
commit 8052d3d63d
5 changed files with 524 additions and 0 deletions

View File

@@ -0,0 +1,84 @@
import type { PageQuery, BaseEntity } from '#/api/common';
export interface DeviceLocationVO {
/**
* 主键
*/
id: string | number;
/**
* 位置名称
*/
locationName: string;
/**
* 位置编号
*/
locationCode: string;
/**
* 位置类型
*/
locationType: string;
/**
* 搜索值
*/
searchValue: string;
}
export interface DeviceLocationForm extends BaseEntity {
/**
* 主键
*/
id?: string | number;
/**
* 位置名称
*/
locationName?: string;
/**
* 位置编号
*/
locationCode?: string;
/**
* 位置类型
*/
locationType?: string;
/**
* 搜索值
*/
searchValue?: string;
}
export interface DeviceLocationQuery extends PageQuery {
/**
* 位置名称
*/
locationName?: string;
/**
* 位置编号
*/
locationCode?: string;
/**
* 位置类型
*/
locationType?: string;
/**
* 搜索值
*/
searchValue?: string;
/**
* 日期范围参数
*/
params?: any;
}