Procházet zdrojové kódy

Merge branch 'master' of http://192.168.1.41:3000/SmartCost/SCCommon

LuoHaoxuan před 3 roky
rodič
revize
32709b2c7b

+ 7 - 1
types/src/interface/api/approvaApi.ts

@@ -1,4 +1,10 @@
-import { IGatherYsProfileFile, IMatterNode, UploadMsg } from '..';
+import {
+  IBusinessProcessFee,
+  IBusinessProcessFeeParam,
+  IGatherYsProfileFile,
+  IMatterNode,
+  UploadMsg,
+} from '..';
 
 export namespace PostApprovalCopyGatherYsProfileFiles {
   export type Params = {

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

@@ -0,0 +1,10 @@
+import { IBusinessProcessFeeParam, IBusinessProcessFee } from '../business';
+
+export namespace PostGetFeeByProcessId {
+  export type Params = {
+    businessID: string;
+    params: IBusinessProcessFeeParam[];
+  };
+
+  export type Response = Record<string, IBusinessProcessFee>;
+}

+ 1 - 0
types/src/interface/api/index.ts

@@ -1,2 +1,3 @@
 export * from './approvaApi';
 export * from './processApi';
+export * from './businessApi';