Просмотр исходного кода

feat(types): 添加IInstitutionRole接口

LuoHaoxuan 3 лет назад
Родитель
Сommit
2854ee89b2

+ 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[];
+}