qinlaiqiao 4 лет назад
Родитель
Сommit
8eb1c6fd3f
1 измененных файлов с 6 добавлено и 0 удалено
  1. 6 0
      types/src/interface/financialProject.ts

+ 6 - 0
types/src/interface/financialProject.ts

@@ -1,3 +1,4 @@
+import { IProjectApproval } from './process';
 // 财审项目类型,字段来自后台,无法修改
 // 财审项目类型,字段来自后台,无法修改
 export interface IFinancialProjectType {
 export interface IFinancialProjectType {
   ID: string;
   ID: string;
@@ -36,3 +37,8 @@ export interface IFinancialProjectInfo {
   shortName: string; // 项目简称
   shortName: string; // 项目简称
   projectType: IFinancialProjectType;
   projectType: IFinancialProjectType;
 }
 }
+
+// 项目列表
+export interface IFinancialProjectListItem extends IFinancialProject {
+  projectApproval: IProjectApproval;
+}