This commit is contained in:
lxj
2025-08-03 15:31:56 +08:00
38 changed files with 1103 additions and 655 deletions

View File

@@ -29,7 +29,7 @@ export interface BuildingVO {
/**
* 建筑类型('1住宅','2商业','3:混合')
*/
buildType: number;
buildType: string;
/**
* 电梯数量

View File

@@ -1,4 +1,4 @@
import type { PageQuery, BaseEntity } from '#/api/common';
import type {PageQuery, BaseEntity} from '#/api/common';
export interface WorkOrdersVO {
/**
@@ -71,8 +71,40 @@ export interface WorkOrdersVO {
*/
isTimeOut: number;
workOrdersRecordVoList: HandleRecords[];
typeName: string;
initiatorPeople: string;
handlerText: string;
/**
* 评价图片
*/
imgUrl: string;
/**
* 评价内容
*/
serviceEvaluaText: string;
/**
* 创建时间
*/
createTime: string;
/**
* 备注
*/
remark: string;
}
export interface HandleRecords {
status: string;
createTime: string;
handlerName: string;
initiatorPeople: string;
}
export interface WorkOrdersForm extends BaseEntity {
/**
* id
@@ -213,7 +245,7 @@ export interface WorkOrdersQuery extends PageQuery {
isTimeOut?: number;
/**
* 日期范围参数
*/
* 日期范围参数
*/
params?: any;
}

View File

@@ -19,7 +19,7 @@ export interface RoomVO {
/**
* 房间类型('住宅','商铺','办公室','设备间','公共区域')
*/
roomType: number;
roomType: string;
/**
* 建筑面积(平方米)
@@ -49,7 +49,7 @@ export interface RoomVO {
/**
* 状态('空置','已售','已租','自用'
*/
status: number;
status: string;
}

View File

@@ -40,6 +40,10 @@ export interface AttachVO {
* 创建时间
*/
createTime: string;
quantity: number;
meetAttachId: string;
}
export interface AttachForm extends BaseEntity {