防坠器

This commit is contained in:
weicw
2023-06-05 22:57:25 +08:00
parent 01a57c177e
commit 2c11634cfa
10 changed files with 1580 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
import type { PageParam } from '@/api';
export interface TowerFall {
id?: number;
code?: string;
model?: string;
factory?: string;
factoryDate?: string;
discardDate?: 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;
}