Merge branch 'master' of http://47.109.37.87:3000/by2025/admin-vben5
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Has been cancelled

This commit is contained in:
2025-07-11 17:59:43 +08:00
9 changed files with 410 additions and 141 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;
}