25 lines
587 B
TypeScript
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 {}
|
|
}
|