@@ -0,0 +1,17 @@
+export interface member {
+ ID: string;
+ approvalStatus: string;
+ approvalTime: string;
+}
+
+export interface ISubjectExecutor {
+ subjectID: string;
+ name: string;
+ setType: string;
+ businessType: string;
+ participantMode: string;
+ approvaledPermission: string;
+ members: member[];
+ businessID: string;