返回 AiToEarn
response.interface.ts
根目录 / project / aitoearn-electron / server / src / global / interface / response.interface.ts
1 /*
2 * @Author: nevin
3 * @Date: 2022-01-20 16:41:36
4 * @LastEditors: nevin
5 * @LastEditTime: 2024-06-17 19:37:02
6 * @Description: 请求返回接口
7 */
8
9 export interface HttpResult<T> {
10 data: T; // 数据
11 msg: string; // 信息
12 code: 0 | string; // 自定义code
13 url: string; // 错误的url地址
14 }
15
15 lines TYPESCRIPT