|
|
@@ -2,9 +2,7 @@ import { IGatherYsProfileFile } from "../interface";
|
|
|
|
|
|
export namespace PostApprovalCopyGatherYsProfileFiles {
|
|
|
|
|
|
- export const url = "/approval/copyGatherYsProfileFiles";
|
|
|
-
|
|
|
- export type Body = {
|
|
|
+ export type Params = {
|
|
|
fileDataList: {
|
|
|
name: string;
|
|
|
ext: string;
|
|
|
@@ -15,13 +13,9 @@ export namespace PostApprovalCopyGatherYsProfileFiles {
|
|
|
gypID: string;
|
|
|
}
|
|
|
|
|
|
- export interface Response200 {
|
|
|
- errno: number;
|
|
|
- data: {
|
|
|
- fileList: IGatherYsProfileFile[];
|
|
|
- count: number;
|
|
|
- };
|
|
|
- message: string;
|
|
|
+ export interface Response {
|
|
|
+ fileList: IGatherYsProfileFile[];
|
|
|
+ count: number;
|
|
|
}
|
|
|
|
|
|
}
|