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