完成合同管理模块和公共参数模块

This commit is contained in:
gxwebsoft
2023-06-08 19:33:24 +08:00
parent 7ee10c16c7
commit f5cb3dc489
31 changed files with 3195 additions and 140 deletions

View File

@@ -0,0 +1,46 @@
import type { PageParam } from '@/api';
/**
* 合同预定设备清单
*/
export interface ProjectOrder {
// 合同预定设备清单id
projectOrderId?: number;
equipmentName?: string;
equipmentModel?: string;
equipmentNum?: number;
key?: string;
unit?: string;
startTime?: string;
endTime?: string;
year?: string;
documenter?: string;
userId?: number;
username?: string;
nickname?: string;
avatar?: string;
email?: string;
phone?: string;
projectId?: number;
comments?: string;
status?: string;
createTime?: string;
isEdit?: boolean;
}
/**
* 合同预定设备清单搜索条件
*/
export interface ProjectOrderParam extends PageParam {
projectOrderId?: number;
userId?: number;
projectId?: number;
}
export interface UserItem {
key: string;
isEdit?: boolean;
number?: string;
name?: string;
department?: string;
}