|
|
@@ -1,6 +1,12 @@
|
|
|
import { ILabourCoeFile } from './labourCoe';
|
|
|
import { IIncreaseSetting } from './increaseFee';
|
|
|
-import { ITreeScm, IFileRef, DeleteEnum, INumFileRef } from './base';
|
|
|
+import {
|
|
|
+ ITreeScm,
|
|
|
+ IFileRef,
|
|
|
+ DeleteEnum,
|
|
|
+ INumFileRef,
|
|
|
+ IColumnMeta,
|
|
|
+} from './base';
|
|
|
import { ICalcOption, ITenderSetting } from './calculation';
|
|
|
|
|
|
export enum ProjectType {
|
|
|
@@ -199,6 +205,7 @@ export interface IProperty {
|
|
|
economics?: IEconomicIndex[];
|
|
|
}
|
|
|
|
|
|
+// 原来的列设置太复杂了,没什么必要
|
|
|
export interface IMainTreeCol {
|
|
|
cols: Array<any>;
|
|
|
headRowHeight: Array<number>;
|
|
|
@@ -221,7 +228,7 @@ export interface IProject extends ITreeScm {
|
|
|
code?: string;
|
|
|
createDate: number;
|
|
|
property?: IProperty;
|
|
|
- mainTreeCol?: IMainTreeCol;
|
|
|
+ ColMetas?: IColumnMeta[];
|
|
|
gljCol?: IGLJCol;
|
|
|
changeMark?: string;
|
|
|
remark?: string;
|