interface Response<T = any>{
data:T;
result:boolean;
code:number;
msg:string;
}
type RES<T> = Promise<Response<T>>