|
@@ -1,9 +1,5 @@
|
|
|
import { BusinessTypeKey } from './subjectUnit';
|
|
import { BusinessTypeKey } from './subjectUnit';
|
|
|
|
|
|
|
|
-interface member {
|
|
|
|
|
- ID: string;
|
|
|
|
|
-}
|
|
|
|
|
-
|
|
|
|
|
export interface IExecutorApprovaledPermission {
|
|
export interface IExecutorApprovaledPermission {
|
|
|
ID: string;
|
|
ID: string;
|
|
|
permission: string[];
|
|
permission: string[];
|
|
@@ -17,6 +13,6 @@ export interface ISubjectExecutor {
|
|
|
businessType: BusinessTypeKey;
|
|
businessType: BusinessTypeKey;
|
|
|
participantMode: string;
|
|
participantMode: string;
|
|
|
approvaledPermission: IExecutorApprovaledPermission[];
|
|
approvaledPermission: IExecutorApprovaledPermission[];
|
|
|
- members: member[];
|
|
|
|
|
|
|
+ members: string[];
|
|
|
businessID: string;
|
|
businessID: string;
|
|
|
}
|
|
}
|