odc.xiaohui
2023-12-22 2969915f7a8f5b1f235b6cc954011eb09dffc38f
1
2
3
4
5
6
7
8
9
10
import axios from 'axios';
 
declare module 'axios' {
  export interface AxiosResponse<T = any> {
    code: number;
    msg: string;
    rows: T;
    total: number;
  }
}