防坠器
This commit is contained in:
31
src/api/tower/fall/model/index.ts
Normal file
31
src/api/tower/fall/model/index.ts
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user