50 lines
615 B
TypeScript
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;
|
||
|
}
|