Files
admin-vben5/apps/web-antd/src/api/property/inspectionManagement/inspectionItem/model.d.ts
dev_ljl 051e7df6c7
Some checks are pending
Gitea Actions Demo / Explore-Gitea-Actions (push) Waiting to run
1、巡检项目
2025-07-10 16:13:53 +08:00

50 lines
615 B
TypeScript

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;
}