فهرست منبع

feat(types): subject改成gather

caipin 3 سال پیش
والد
کامیت
70a957cf65

+ 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';