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

295 lines
3.4 KiB
TypeScript
Raw Normal View History

2025-07-10 08:45:59 +08:00
import type { PageQuery, BaseEntity } from '#/api/common';
export interface ElevatorInfoVO {
/**
*
*/
elevatorId: string | number;
/**
*
*/
elevatorCode: string;
/**
*
*/
elevatorName: string;
/**
*
*/
location: string;
/**
*
*/
brand: string;
/**
*
*/
model: string;
/**
*
*/
manufactureDate: string;
/**
*
*/
installationDate: string;
/**
* (kg)
*/
maxLoad: number;
/**
*
*/
floorsServed: number;
/**
*
*/
maintenanceCompany: string;
/**
*
*/
maintenancePhone: string;
/**
*
*/
lastInspectionDate: string;
/**
*
*/
nextInspectionDate: string;
/**
*
*/
controlFactory: string;
/**
* ip
*/
controlIp: string;
/**
*
*/
controlPort: number;
/**
*
*/
controlAccount: string;
/**
*
*/
controlPwd: string;
}
export interface ElevatorInfoForm extends BaseEntity {
/**
*
*/
elevatorId?: string | number;
/**
*
*/
elevatorCode?: string;
/**
*
*/
elevatorName?: string;
/**
*
*/
location?: string;
/**
*
*/
brand?: string;
/**
*
*/
model?: string;
/**
*
*/
manufactureDate?: string;
/**
*
*/
installationDate?: string;
/**
* (kg)
*/
maxLoad?: number;
/**
*
*/
floorsServed?: number;
/**
*
*/
maintenanceCompany?: string;
/**
*
*/
maintenancePhone?: string;
/**
*
*/
lastInspectionDate?: string;
/**
*
*/
nextInspectionDate?: string;
/**
*
*/
controlFactory?: string;
/**
* ip
*/
controlIp?: string;
/**
*
*/
controlPort?: number;
/**
*
*/
controlAccount?: string;
/**
*
*/
controlPwd?: string;
}
export interface ElevatorInfoQuery extends PageQuery {
/**
*
*/
elevatorCode?: string;
/**
*
*/
elevatorName?: string;
/**
*
*/
location?: string;
/**
*
*/
brand?: string;
/**
*
*/
model?: string;
/**
*
*/
manufactureDate?: string;
/**
*
*/
installationDate?: string;
/**
* (kg)
*/
maxLoad?: number;
/**
*
*/
floorsServed?: number;
/**
*
*/
maintenanceCompany?: string;
/**
*
*/
maintenancePhone?: string;
/**
*
*/
lastInspectionDate?: string;
/**
*
*/
nextInspectionDate?: string;
/**
*
*/
controlFactory?: string;
/**
* ip
*/
controlIp?: string;
/**
*
*/
controlPort?: number;
/**
*
*/
controlAccount?: string;
/**
*
*/
controlPwd?: string;
/**
*
*/
params?: any;
}