返回 AiToEarn
comment.ts
1 /*
2 * @Author: nevin
3 * @Date: 2025-02-05 17:43:14
4 * @LastEditTime: 2025-02-19 22:18:16
5 * @LastEditors: nevin
6 * @Description:
7 */
8
9 import { AccountInfo } from '../account/comment';
10 import { DashboardData as DashboardDataLast } from '../../../electron/main/plat/plat.type';
11
12 export interface StatisticsInfo {
13 accountTotal: number;
14 list: AccountInfo[];
15 fansCount: number;
16 readCount: number;
17 likeCount: number;
18 collectCount: number;
19 commentCount: number;
20 income: number;
21 }
22
23 // 获取平台账户统计信息返回值
24 export type DashboardData = DashboardDataLast;
25
25 lines TYPESCRIPT