完成水电表列表

This commit is contained in:
Zy
2026-04-18 18:14:07 +08:00
parent 9a95e2b7e3
commit d0888c6afb
115 changed files with 2842 additions and 343 deletions

View File

@@ -67,43 +67,18 @@ export interface RecordForm extends BaseEntity {
}
export interface RecordQuery extends PageQuery {
/**
* 关联巡检任务ID
*/
taskId?: string | number;
/**
* 关联巡检计划ID
*/
planId?: string | number;
/**
* 巡检人员ID
*/
inspectorId?: string | number;
/**
* 巡检路线ID
*/
routeId?: string | number;
/**
* 任务开始时间
*/
startTime?: string;
/**
* 任务结束时间
*/
endTime?: string;
/**
* 执行状态字典inspection_exec_status 0-按时完成 1-超时完成 2-未完成)
*/
execStatus?: number;
status?: string;
/**
* 日期范围参数
*/
params?: any;
taskTime?: string;
/**
* 任务名称
*/
taskName?: string;
}