Files
SEONexusAdmin/src/api/interface/activity/drive.ts
Your Name 845d68110b debug
2026-04-15 12:00:09 +08:00

25 lines
587 B
TypeScript

import { ReqPage, ResultData } from "@/api/interface/index";
export namespace DriveList {
export interface ReqParams extends ReqPage {
key?: string;
}
export interface saveParams {
a_id?: number;
}
export interface delParams {
a_id?: string;
}
export interface ResList {
a_id: number;
a_status: any;
code: any;
name: any;
config: any;
free_vip_day: any;
value: any;
description: any;
created_at: string;
}
export interface ResData extends ResultData {}
}