|
|
@@ -17,6 +17,11 @@ export interface IFinancialProjectReporter {
|
|
|
name: string;
|
|
|
}
|
|
|
|
|
|
+export interface IFinancialProjectSecrecy {
|
|
|
+ protected: boolean,
|
|
|
+ institutions: string[]
|
|
|
+}
|
|
|
+
|
|
|
// 财审项目,字段来自后台,无法修改
|
|
|
export interface IFinancialProject {
|
|
|
ID: string;
|
|
|
@@ -28,6 +33,7 @@ export interface IFinancialProject {
|
|
|
reportAccount?: IFinancialProjectReporter[]; // 上报人(即前端列表的编辑者列)
|
|
|
constructionID?: string; // 关联的建设项目
|
|
|
createdTime: number;
|
|
|
+ secrecy?: IFinancialProjectSecrecy // 项目设置保密
|
|
|
[props: string]: any;
|
|
|
}
|
|
|
|