فهرست منبع

feat(types): 登录日志

LuoHaoxuan 3 سال پیش
والد
کامیت
5deb6aee5f
2فایلهای تغییر یافته به همراه4 افزوده شده و 3 حذف شده
  1. 3 3
      types/src/interface/financialProject.ts
  2. 1 0
      types/src/interface/index.ts

+ 3 - 3
types/src/interface/financialProject.ts

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

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

@@ -31,3 +31,4 @@ export * from './institutionRole';
 export * from './subjectUnit';
 export * from './executor';
 export * from './matter';
+export * from './loginLog';