龚焕茏
2024-03-07 8cffe3b961224f59d8b6a8fc59d8cae1c6d9de2f
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;
  }
}