|
|
@@ -39,6 +39,7 @@ export interface IDecimal {
|
|
|
export interface IBillsQuantityDecimal {
|
|
|
unit: string;
|
|
|
decimal: number;
|
|
|
+ ID:string;
|
|
|
}
|
|
|
|
|
|
// 呈现选项
|
|
|
@@ -124,6 +125,12 @@ export interface IInfoItem {
|
|
|
items?: IInfoItem[];
|
|
|
}
|
|
|
|
|
|
+//基本信息类型
|
|
|
+export interface IBasicInfo extends IInfoItem{
|
|
|
+ ID:string,
|
|
|
+ parentID:string,
|
|
|
+ seq:number
|
|
|
+}
|
|
|
// 工程特征指标
|
|
|
interface IBaseEngineerFeature {
|
|
|
value: string;
|
|
|
@@ -209,7 +216,7 @@ export interface IProperty {
|
|
|
tenderSetting?: ITenderSetting; // 调价设置
|
|
|
overHeight?: IOverHeight[]; // 超高降效数据
|
|
|
overHeightOption?: OverHeightOption; // 超高降效选项
|
|
|
- basicInfo?: IInfoItem[]; // 基本信息
|
|
|
+ basicInfo?: IBasicInfo[]; // 基本信息
|
|
|
feature?: IInfoItem[]; // 工程特征
|
|
|
progressiveInterval?: IProgressiveInterval[]; // 累进区间
|
|
|
gljAdjustType?: GLJAdjustType; // 承包人材料调整类型
|
|
|
@@ -347,3 +354,17 @@ export interface IProjectLog {
|
|
|
// 活动者ID
|
|
|
activityUserID: string;
|
|
|
}
|
|
|
+
|
|
|
+// 导入状态
|
|
|
+export enum ImportStatus {
|
|
|
+ IMPORTING = 0,
|
|
|
+ FINISH = 1,
|
|
|
+ FAIL = 3,
|
|
|
+}
|
|
|
+
|
|
|
+// 导入log
|
|
|
+export interface IImportLog {
|
|
|
+ status: ImportStatus;
|
|
|
+ errorMsg: string;
|
|
|
+ stack?: any;
|
|
|
+}
|