9ee6e3a 09502ac 9ee6e3a 09502ac 3c31ff9
1
2
3
4
5
6
7
8
9
10
11
12
export interface ResponseType<T = any> { retcode: number; data: T; retmsg: string; status: number; } export interface ResponseGetType<T = any> { data: T; loading?: boolean; }