Files
admin-vben5/apps/web-antd/src/api/property/inspectionManagement/inspectionItem/model.d.ts

50 lines
615 B
TypeScript
Raw Normal View History

2025-07-10 16:13:53 +08:00
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;
}