admin-vben5/apps/web-antd/src/api/sis/elevatorInfo/model.d.ts
15683799673 ed2e88b99e
Some checks are pending
Gitea Actions Demo / Explore-Gitea-Actions (push) Waiting to run
增加电梯页面
2025-07-10 08:45:59 +08:00

295 lines
3.4 KiB
TypeScript

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