|
@@ -1,4 +1,10 @@
|
|
|
-import { IGatherYsProfileFile, IMatterNode, UploadMsg } from '..';
|
|
|
|
|
|
|
+import {
|
|
|
|
|
+ IBusinessProcessFee,
|
|
|
|
|
+ IBusinessProcessFeeParam,
|
|
|
|
|
+ IGatherYsProfileFile,
|
|
|
|
|
+ IMatterNode,
|
|
|
|
|
+ UploadMsg,
|
|
|
|
|
+} from '..';
|
|
|
|
|
|
|
|
export namespace PostApprovalCopyGatherYsProfileFiles {
|
|
export namespace PostApprovalCopyGatherYsProfileFiles {
|
|
|
export type Params = {
|
|
export type Params = {
|
|
@@ -44,3 +50,12 @@ export namespace GetApprovalGetGatherYsProfileByBusinessID {
|
|
|
copy: boolean;
|
|
copy: boolean;
|
|
|
};
|
|
};
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
|
|
+export namespace PostGetFeeByProcessId {
|
|
|
|
|
+ export type Params = {
|
|
|
|
|
+ businessID: string;
|
|
|
|
|
+ params: IBusinessProcessFeeParam[];
|
|
|
|
|
+ };
|
|
|
|
|
+
|
|
|
|
|
+ export type Response = Record<string, IBusinessProcessFee>;
|
|
|
|
|
+}
|