Files
admin-vben5/apps/web-antd/src/api/property/equipmentManagement/deviceLocation/model.d.ts

85 lines
1.0 KiB
TypeScript
Raw Normal View History

2025-07-15 17:31:12 +08:00
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;
}