36 lines
629 B
TypeScript
36 lines
629 B
TypeScript
import type { PageParam } from '@/api';
|
|
|
|
export interface TowerFall {
|
|
id?: number;
|
|
code?: string;
|
|
model?: string;
|
|
// companyId?: number;
|
|
companyName: string;
|
|
factory?: string;
|
|
factoryDate?: string;
|
|
discardDate?: string;
|
|
|
|
checkDate?: string;
|
|
file1?: string;
|
|
file2?: string;
|
|
file3?: string;
|
|
file4?: string;
|
|
users?: string;
|
|
status?: number;
|
|
comments?: string;
|
|
userId?: number;
|
|
deleted?: number;
|
|
tenantId?: number;
|
|
createTime?: number;
|
|
maxRatedLoad?: string;
|
|
}
|
|
|
|
/**
|
|
* 搜索条件
|
|
*/
|
|
export interface TowerFallParam extends PageParam {
|
|
id?: number;
|
|
name?: string;
|
|
status?: number;
|
|
}
|