소스 검색

feat(types): subject改成gather

caipin 3 년 전
부모
커밋
70a957cf65
5개의 변경된 파일5개의 추가작업 그리고 5개의 파일을 삭제
  1. 1 1
      types/src/interface/subjectUnit.ts
  2. 1 1
      types/src/interface/gatherExecutor.ts
  3. 1 1
      types/src/interface/index.ts
  4. 1 1
      types/src/interface/matter.ts
  5. 1 1
      types/src/interface/process.ts

+ 1 - 1
types/src/interface/subjectUnit.ts

@@ -1,4 +1,4 @@
-export interface ISubjectUnit {
+export interface IGather {
   ID: string;
   institutionIDs: string[];
 }

+ 1 - 1
types/src/interface/gatherExecutor.ts

@@ -1,4 +1,4 @@
-import { BusinessTypeKey } from './subjectUnit';
+import { BusinessTypeKey } from './gather';
 
 export interface IExecutorApprovaledPermission {
   ID: string;

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

@@ -28,7 +28,7 @@ export * from './process';
 export * from './structure';
 export * from './editLog';
 export * from './institutionRole';
-export * from './subjectUnit';
+export * from './gather';
 // export * from './executor';
 export * from './gatherExecutor';
 export * from './matter';

+ 1 - 1
types/src/interface/matter.ts

@@ -1,4 +1,4 @@
-import { BusinessTypeKey, MatterTypeKey } from './subjectUnit';
+import { BusinessTypeKey, MatterTypeKey } from './gather';
 // 事项
 export interface IMatter {
     ID: string;

+ 1 - 1
types/src/interface/process.ts

@@ -1,6 +1,6 @@
 import { ReportTree } from './report';
 import { CptModelName, SubModelName, ActionType } from './base';
-import { BusinessTypeKey } from './subjectUnit';
+import { BusinessTypeKey } from './gather';
 import { IExecutorApprovaledPermission } from './gatherExecutor';
 import { executorMember } from './approvalStatus';