Przeglądaj źródła

feat: 新建目录接口

lipk 3 lat temu
rodzic
commit
fc3a8b9af7
1 zmienionych plików z 10 dodań i 0 usunięć
  1. 10 0
      types/src/interface/api/approvaApi.ts

+ 10 - 0
types/src/interface/api/approvaApi.ts

@@ -50,3 +50,13 @@ export namespace GetApprovalGetGatherYsProfileByBusinessID {
     copy: boolean;
     copy: boolean;
   };
   };
 }
 }
+
+export namespace PostApprovalCreateDir {
+  export type Params = {
+    parentID: string;
+    name: string;
+    matterListID: string;
+    approvalID: string;
+    matterID: string;
+  };
+}