|
|
@@ -1,4 +1,4 @@
|
|
|
-import { IGatherYsProfileFile, IMatterNode } from "../interface";
|
|
|
+import { IGatherYsProfileFile, IMatterNode, UploadMsg } from "../interface";
|
|
|
|
|
|
export namespace PostApprovalCopyGatherYsProfileFiles {
|
|
|
|
|
|
@@ -26,4 +26,22 @@ export namespace GetApprovalGetMatterData {
|
|
|
}
|
|
|
|
|
|
export type Response = Array<IMatterNode>
|
|
|
+}
|
|
|
+
|
|
|
+export namespace GetApprovalGetYsProfileTreeWithFile {
|
|
|
+ export type Params = { businessId: string; matterId: string }
|
|
|
+
|
|
|
+ export type Response = Array<IMatterNode>
|
|
|
+}
|
|
|
+
|
|
|
+export namespace GetApprovalGetGatherYsProfileByBusinessID {
|
|
|
+ export type Params = { businessID: string; matterID: string }
|
|
|
+
|
|
|
+ export type Response = {
|
|
|
+ tree: [];
|
|
|
+ profileView: boolean;
|
|
|
+ uploadMsg: UploadMsg;
|
|
|
+ cadView: boolean;
|
|
|
+ copy: boolean
|
|
|
+ }
|
|
|
}
|