@@ -1 +1,2 @@
export * from './approvaApi';
+export * from './processApi';
@@ -0,0 +1,11 @@
+export namespace PostGetProcessListByTemplateId {
+ export type Params = {
+ businessID: string;
+ templateID: string[];
+ };
+
+ export type Body = Array<{
+ templateId: string;
+ referenceProcessId: string;
+ }>;
+}