|
|
@@ -1,3 +1,4 @@
|
|
|
+import { GljType } from './glj';
|
|
|
import { CptModelName, SubModelName, ActionType, ActionName } from './base';
|
|
|
|
|
|
export interface ILogDetail<T = any> {
|
|
|
@@ -20,11 +21,16 @@ export interface ILogDetail<T = any> {
|
|
|
|
|
|
export interface IEditLog {
|
|
|
projectID: string;
|
|
|
- billID: string;
|
|
|
+ ID: string;
|
|
|
constructionID: string;
|
|
|
updateTime: number; // 最后修改时间
|
|
|
- code?: string;
|
|
|
- name?: string;
|
|
|
- unit?: string;
|
|
|
+ info: {
|
|
|
+ code?: string;
|
|
|
+ name?: string;
|
|
|
+ unit?: string;
|
|
|
+ specs: string;
|
|
|
+ type: GljType;
|
|
|
+ };
|
|
|
+ module: CptModelName;
|
|
|
editLogs: ILogDetail[];
|
|
|
}
|