瀏覽代碼

feat(types): 修改接口返回值

lipk 3 年之前
父節點
當前提交
6a61050ce0
共有 1 個文件被更改,包括 3 次插入0 次删除
  1. 3 0
      types/src/interface/api/processApi.ts

+ 3 - 0
types/src/interface/api/processApi.ts

@@ -1,3 +1,5 @@
+import { IProcess } from '../process';
+
 export namespace PostGetProcessListByTemplateId {
 export namespace PostGetProcessListByTemplateId {
   export type Params = {
   export type Params = {
     businessID: string;
     businessID: string;
@@ -7,5 +9,6 @@ export namespace PostGetProcessListByTemplateId {
   export type Response = Array<{
   export type Response = Array<{
     templateId: string;
     templateId: string;
     referenceProcessId: string;
     referenceProcessId: string;
+    process: IProcess;
   }>;
   }>;
 }
 }