|
@@ -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;
|
|
|
}>;
|
|
}>;
|
|
|
}
|
|
}
|