odc.xiaohui
2023-11-09 b08db2d2a75bd8df5f648d856cb160ada7ff0068
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;
  }
}