Преглед изворни кода

feat(types): 添加ISubjectExecutor接口

LuoHaoxuan пре 3 година
родитељ
комит
67c861da16
1 измењених фајлова са 17 додато и 0 уклоњено
  1. 17 0
      types/src/interface/subjectExecutor.ts

+ 17 - 0
types/src/interface/subjectExecutor.ts

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