Files
admin-vben5/apps/web-antd/src/api/property/inspectionManagement/inspectionDetail/model.d.ts

335 lines
4.2 KiB
TypeScript
Raw Normal View History

import type { PageQuery, BaseEntity } from '#/api/common';
export interface TaskDetailVO {
/**
* id
*/
id: string | number;
/**
* id
*/
taskId: string | number;
/**
* 线id
*/
routeId: string | number;
/**
* id
*/
planId: string | number;
/**
* id
*/
pointId: string | number;
/**
*
*/
patrolType: string;
/**
2025-08-08 16:22:04 +08:00
* (1.2.3.)
*/
signType: string;
2025-08-08 16:22:04 +08:00
/**
*
*/
actualInspectionTime: string;
/**
* (12.)
*/
actualSignState: string;
/**
* (0,1)
*/
inspectionState: string;
/**
2025-08-08 16:22:04 +08:00
*
*/
inspectionImage: string;
/**
*
*/
planInspectionPerson: string;
/**
*
*/
actualInspectionPerson: string;
/**
*
*/
taskStatus: string;
/**
*
*/
inspectionResults: string;
/**
*
*/
2025-08-08 16:22:04 +08:00
inspectionDesc: string;
/**
*
*/
inspectionLocation: string;
/**
*
*/
inspectionTime: string;
/**
*
*/
remark: string;
/**
*
*/
pointStartTime: string;
/**
*
*/
pointEndTime: string;
2025-08-08 16:22:04 +08:00
/**
*
*/
searchValue: string;
}
export interface TaskDetailForm extends BaseEntity {
/**
* id
*/
id?: string | number;
/**
* id
*/
taskId?: string | number;
/**
* 线id
*/
routeId?: string | number;
/**
* id
*/
planId?: string | number;
/**
* id
*/
pointId?: string | number;
/**
*
*/
patrolType?: string;
/**
2025-08-08 16:22:04 +08:00
* (1.2.3.)
*/
signType?: string;
2025-08-08 16:22:04 +08:00
/**
*
*/
actualInspectionTime?: string;
/**
* (12.)
*/
actualSignState?: string;
/**
* (0,1)
*/
inspectionState?: string;
/**
2025-08-08 16:22:04 +08:00
*
*/
inspectionImage?: string;
2025-08-08 16:22:04 +08:00
/**
*
*/
planInspectionPerson?: string;
/**
*
*/
actualInspectionPerson?: string;
/**
*
*/
taskStatus?: string;
/**
*
*/
inspectionResults?: string;
/**
*
*/
inspectionDesc?: string;
/**
*
*/
inspectionLocation?: string;
/**
*
*/
inspectionTime?: string;
/**
*
*/
remark?: string;
/**
*
*/
pointStartTime?: string;
/**
*
*/
pointEndTime?: string;
2025-08-08 16:22:04 +08:00
/**
*
*/
searchValue?: string;
}
export interface TaskDetailQuery extends PageQuery {
/**
* id
*/
taskId?: string | number;
/**
* 线id
*/
routeId?: string | number;
/**
* id
*/
planId?: string | number;
/**
* id
*/
pointId?: string | number;
/**
*
*/
patrolType?: string;
/**
2025-08-08 16:22:04 +08:00
* (1.2.3.)
*/
signType?: string;
2025-08-08 16:22:04 +08:00
/**
*
*/
actualInspectionTime?: string;
/**
* (12.)
*/
actualSignState?: string;
/**
* (0,1)
*/
inspectionState?: string;
/**
2025-08-08 16:22:04 +08:00
*
*/
inspectionImage?: string;
/**
*
*/
planInspectionPerson?: string;
/**
*
*/
2025-08-08 16:22:04 +08:00
actualInspectionPerson?: string;
/**
*
*/
taskStatus?: string;
/**
*
*/
inspectionResults?: string;
/**
*
*/
inspectionDesc?: string;
/**
*
*/
inspectionLocation?: string;
/**
*
*/
inspectionTime?: string;
/**
*
*/
pointStartTime?: string;
/**
*
*/
pointEndTime?: string;
2025-08-08 16:22:04 +08:00
/**
*
*/
searchValue?: string;
/**
*
*/
params?: any;
}