浏览代码

feat(types): 添加IInstitutionRole接口

LuoHaoxuan 3 年之前
父节点
当前提交
2854ee89b2
共有 3 个文件被更改,包括 6 次插入5 次删除
  1. 1 0
      types/src/interface/index.ts
  2. 0 5
      types/src/interface/institutionRole
  3. 5 0
      types/src/interface/institutionRole.ts

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

@@ -27,3 +27,4 @@ export * from './institution';
 export * from './process';
 export * from './structure';
 export * from './editLog';
+export * from './institutionRole';

+ 0 - 5
types/src/interface/institutionRole

@@ -1,5 +0,0 @@
-export interface IInstitutionRole {
-    ID: string;
-    institutionID: string;
-    approvalMember: string[];
-}

+ 5 - 0
types/src/interface/institutionRole.ts

@@ -0,0 +1,5 @@
+export interface IInstitutionRole {
+  ID: string;
+  institutionID: string;
+  approvalMember: string[];
+}