|
@@ -639,14 +639,19 @@ export interface RptTreeNode {
|
|
|
auditType?: string | null;
|
|
auditType?: string | null;
|
|
|
};
|
|
};
|
|
|
}
|
|
}
|
|
|
|
|
+// 方案列表
|
|
|
export interface IRptSchemeList{
|
|
export interface IRptSchemeList{
|
|
|
- ID:string;
|
|
|
|
|
- name:string;
|
|
|
|
|
- typeID:string;
|
|
|
|
|
- typeName:string;
|
|
|
|
|
- data:RptTreeNode[];
|
|
|
|
|
-
|
|
|
|
|
|
|
+ ID: string;
|
|
|
|
|
+ name: string;
|
|
|
|
|
+ data?: string[];
|
|
|
|
|
+ level?:string;//级别,用来区分是单位工程、单项工程和建设项目的
|
|
|
}
|
|
}
|
|
|
|
|
+//方案数据
|
|
|
|
|
+export interface IRptSchemeData {
|
|
|
|
|
+ userID:string;
|
|
|
|
|
+ data:IRptSchemeList
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
//报表设置参数
|
|
//报表设置参数
|
|
|
export interface IRptCustomizeCfg {
|
|
export interface IRptCustomizeCfg {
|
|
|
userID?: string;
|
|
userID?: string;
|