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