image.png
    src/api/type.ts

    1. export interface ApiResponse<T = any> {
    2. code: number;
    3. data: T;
    4. message?: string;
    5. }