Forráskód Böngészése

Merge branch 'master' of http://192.168.1.41:3000/SmartCost/SCCommon

zhangweicheng 4 éve
szülő
commit
c7974064a1

+ 1 - 0
types/src/interface/compilation.ts

@@ -50,6 +50,7 @@ export interface IEngineering {
   progressiveLib?: IFileRef[];
   taxGroup: ITaxGroup[];
   indexName?: string; // 指标专业名称
+  visible?: boolean; // 是否显示 
 }
 
 export interface IValuation {

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

@@ -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;
 }