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

247 lines
3.0 KiB
TypeScript
Raw Normal View History

2025-07-11 17:29:59 +08:00
import type {PageQuery, BaseEntity} from '#/api/common';
2025-07-10 17:33:46 +08:00
export interface InspectionPlanVO {
/**
* id
*/
id: string | number;
/**
*
*/
planName: string;
/**
* 线id
*/
inspectionRouteId: string | number;
/**
*
*/
inspectionPlanPeriod: number;
/**
*
*/
beforeTime: number;
/**
*
*/
startDate: string;
/**
*
*/
endDate: string;
/**
*
*/
startTime: string;
/**
*
*/
endTime: string;
/**
* (0,1)
*/
signType: number;
/**
* (01)
*/
canReexamine: number;
/**
*
*/
userId: string | number;
/**
*
*/
remark: string;
2025-07-11 17:29:59 +08:00
/**
*
*/
planDate?: any[];
/**
*
*/
inspectionMonth?:string;
/**
*
*/
inspectionDay?:string;
/**
*
*/
inspectionWorkday?:string;
/**
*
*/
state?:string
2025-07-14 17:32:10 +08:00
2025-07-10 17:33:46 +08:00
}
export interface InspectionPlanForm extends BaseEntity {
/**
* id
*/
id?: string | number;
/**
*
*/
planName?: string;
/**
* 线id
*/
inspectionRouteId?: string | number;
/**
*
*/
inspectionPlanPeriod?: number;
/**
*
*/
beforeTime?: number;
/**
*
*/
startDate?: string;
/**
*
*/
endDate?: string;
/**
*
*/
startTime?: string;
/**
*
*/
endTime?: string;
/**
* (0,1)
*/
signType?: number;
/**
* (01)
*/
canReexamine?: number;
/**
*
*/
userId?: string | number;
/**
*
*/
remark?: string;
2025-07-11 17:29:59 +08:00
/**
*
*/
inspectionMonth?:string;
/**
*
*/
inspectionDay?:string;
/**
*
*/
inspectionWorkday?:string;
2025-07-10 17:33:46 +08:00
}
export interface InspectionPlanQuery extends PageQuery {
/**
*
*/
planName?: string;
/**
* 线id
*/
inspectionRouteId?: string | number;
/**
*
*/
inspectionPlanPeriod?: number;
/**
*
*/
beforeTime?: number;
/**
*
*/
startDate?: string;
/**
*
*/
endDate?: string;
/**
*
*/
startTime?: string;
/**
*
*/
endTime?: string;
/**
* (0,1)
*/
signType?: number;
/**
* (01)
*/
canReexamine?: number;
/**
*
*/
userId?: string | number;
/**
2025-07-11 17:29:59 +08:00
*
*/
2025-07-10 17:33:46 +08:00
params?: any;
2025-07-11 17:29:59 +08:00
/**
*
*/
inspectionMonth?:string;
/**
*
*/
inspectionDay?:string;
/**
*
*/
inspectionWorkday?:string;
2025-07-10 17:33:46 +08:00
}