|
|
@@ -1,4 +1,5 @@
|
|
|
import { BusinessTypeKey } from './gather';
|
|
|
+import { IExecutorApprovaledPermission } from './gatherExecutor';
|
|
|
|
|
|
// export interface member {
|
|
|
// ID: string;
|
|
|
@@ -6,21 +7,21 @@ import { BusinessTypeKey } from './gather';
|
|
|
// approvalTime: string;
|
|
|
// }
|
|
|
|
|
|
-export interface IExecutorApprovaledPermission {
|
|
|
- ID: string;
|
|
|
- permission: string[];
|
|
|
-}
|
|
|
+// export interface IExecutorApprovaledPermission {
|
|
|
+// ID: string;
|
|
|
+// permission: string[];
|
|
|
+// }
|
|
|
|
|
|
// // 执行者
|
|
|
export interface IExecutor {
|
|
|
- ID: string;
|
|
|
- subjectID: string;
|
|
|
- businessType: BusinessTypeKey;
|
|
|
- setType: string;
|
|
|
- name: string;
|
|
|
- participantMode: string;
|
|
|
- approvaledPermission: IExecutorApprovaledPermission[];
|
|
|
- members: string[];
|
|
|
+ ID: string;
|
|
|
+ subjectID: string;
|
|
|
+ businessType: BusinessTypeKey;
|
|
|
+ setType: string;
|
|
|
+ name: string;
|
|
|
+ participantMode: string;
|
|
|
+ approvaledPermission: IExecutorApprovaledPermission[];
|
|
|
+ members: string[];
|
|
|
}
|
|
|
// // 拷贝后的数据表
|
|
|
// export interface ISubjectExecutor extends IExecutor {
|