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