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

This commit is contained in:
2025-07-11 17:29:59 +08:00
parent 109242db60
commit 620bf8dd17
5 changed files with 391 additions and 98 deletions

View File

@@ -1,4 +1,4 @@
import type { PageQuery, BaseEntity } from '#/api/common';
import type {PageQuery, BaseEntity} from '#/api/common';
export interface InspectionPlanVO {
/**
@@ -66,6 +66,28 @@ export interface InspectionPlanVO {
*/
remark: string;
/**
* 计划时间区间
*/
planDate?: any[];
/**
* 巡检月
*/
inspectionMonth?:string;
/**
* 巡检日
*/
inspectionDay?:string;
/**
* 巡检周
*/
inspectionWorkday?:string;
/**
* 状态
*/
state?:string
}
export interface InspectionPlanForm extends BaseEntity {
@@ -133,6 +155,18 @@ export interface InspectionPlanForm extends BaseEntity {
* 备注
*/
remark?: string;
/**
* 巡检月
*/
inspectionMonth?:string;
/**
* 巡检日
*/
inspectionDay?:string;
/**
* 巡检周
*/
inspectionWorkday?:string;
}
@@ -193,7 +227,19 @@ export interface InspectionPlanQuery extends PageQuery {
userId?: string | number;
/**
* 日期范围参数
*/
* 日期范围参数
*/
params?: any;
/**
* 巡检月
*/
inspectionMonth?:string;
/**
* 巡检日
*/
inspectionDay?:string;
/**
* 巡检周
*/
inspectionWorkday?:string;
}