龚焕茏
2024-03-01 29527cd31f56f10e4e356c78aa0c2b98f69b1d8d
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;
  }
}