@@ -0,0 +1,27 @@
+import { IGatherYsProfileFile } from "../interface";
+
+export namespace PostApprovalCopyGatherYsProfileFiles {
+ export const url = "/approval/copyGatherYsProfileFiles";
+ export type Body = {
+ fileDataList: {
+ name: string;
+ ext: string;
+ size: any;
+ path: string;
+ createTime: number;
+ }[];
+ gypID: string;
+ }
+ export interface Response200 {
+ errno: number;
+ data: {
+ fileList: IGatherYsProfileFile[];
+ count: number;
+ };
+ message: string;
+}
@@ -0,0 +1 @@
+export * from './PostApprovalCopyGatherYsProfileFiles';
@@ -1 +1,2 @@
export * from './interface/index';
+export * from './api/PostApprovalCopyGatherYsProfileFiles'