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

This commit is contained in:
2025-07-10 16:13:53 +08:00
parent ed2e88b99e
commit 051e7df6c7
8 changed files with 510 additions and 25 deletions

View File

@@ -0,0 +1,49 @@
import type { PageQuery, BaseEntity } from '#/api/common';
export interface InspectionItemVO {
/**
* 主键id
*/
id: string | number;
/**
* 项目名称
*/
itemName: string;
/**
* 备注
*/
remark: string;
}
export interface InspectionItemForm extends BaseEntity {
/**
* 主键id
*/
id?: string | number;
/**
* 项目名称
*/
itemName?: string;
/**
* 备注
*/
remark?: string;
}
export interface InspectionItemQuery extends PageQuery {
/**
* 项目名称
*/
itemName?: string;
/**
* 日期范围参数
*/
params?: any;
}