1、巡检明细
Some checks are pending
Gitea Actions Demo / Explore-Gitea-Actions (push) Waiting to run

This commit is contained in:
2025-07-15 15:39:58 +08:00
parent 1ed923c969
commit 8e361c6b59
5 changed files with 414 additions and 38 deletions

View File

@@ -59,7 +59,7 @@ export interface InspectionPlanVO {
/**
* 选择员工
*/
userId: string | number;
userId: string;
/**
* 备注
@@ -74,21 +74,22 @@ export interface InspectionPlanVO {
/**
* 巡检月
*/
inspectionMonth?:string;
inspectionMonth?: string;
/**
* 巡检日
*/
inspectionDay?:string;
inspectionDay?: string;
/**
* 巡检周
*/
inspectionWorkday?:string;
inspectionWorkday?: string;
/**
* 状态
*/
state?:string
state?: string
inspectionPlanStaffVoList?: any[]
}
export interface InspectionPlanForm extends BaseEntity {
@@ -159,15 +160,15 @@ export interface InspectionPlanForm extends BaseEntity {
/**
* 巡检月
*/
inspectionMonth?:string;
inspectionMonth?: string;
/**
* 巡检日
*/
inspectionDay?:string;
inspectionDay?: string;
/**
* 巡检周
*/
inspectionWorkday?:string;
inspectionWorkday?: string;
}
@@ -234,13 +235,13 @@ export interface InspectionPlanQuery extends PageQuery {
/**
* 巡检月
*/
inspectionMonth?:string;
inspectionMonth?: string;
/**
* 巡检日
*/
inspectionDay?:string;
inspectionDay?: string;
/**
* 巡检周
*/
inspectionWorkday?:string;
inspectionWorkday?: string;
}