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; }