|
|
@@ -316,3 +316,29 @@ export interface IConstructionTreeData {
|
|
|
construction: { project: IProject };
|
|
|
treeData: IProject[];
|
|
|
}
|
|
|
+
|
|
|
+// 项目log
|
|
|
+export interface IProjectLog {
|
|
|
+ // 费用定额ID
|
|
|
+ compilationID: string;
|
|
|
+ // 费用定额名称
|
|
|
+ compilationName: string;
|
|
|
+ // 建设项目ID
|
|
|
+ constructionID: string;
|
|
|
+ // 建设项目名称
|
|
|
+ constructionName: string;
|
|
|
+ // 单位工程ID
|
|
|
+ unitID: string;
|
|
|
+ // 单位工程名称
|
|
|
+ unitName: string;
|
|
|
+ // 更新时间
|
|
|
+ updateDate: number;
|
|
|
+ // 管理者(所有者、负责人)ID
|
|
|
+ managerID: string;
|
|
|
+ // 活动
|
|
|
+ activity: ProjectActivity;
|
|
|
+ // 活动时间
|
|
|
+ activityDate: number;
|
|
|
+ // 活动者ID
|
|
|
+ activityUserID: string;
|
|
|
+}
|