| 1234567891011121314151617181920 | // @ts-ignoreimport request from '@/libs/request';import {PersonMessage,GetLookAndLikeStatisticsMessageRequest,LookAndLikeMessageReply,LookMessageReply,UnlockLookRecordRequest,GetLookAndLikeListRequest,LookAndLikeListReply,StatisticsSubscribeMessageRequest,StatisticsAISubscribeMessageRequest,ReduceSubscribeMessageRequest} from "./statistics_pb";import {PersonParam,IsLike,PersonIDList} from "../common/common_pb";const StatisticsService = {  /**  统计订阅消息 */  StatisticsSubscribeMessage: async (req?: StatisticsSubscribeMessageRequest) => {	const res = await request.post('/api/common/subscribe/statistic', req);    return res.data.data;  },  /**  统计订阅消息 */  StatisticsAISubscribeMessage: async (req?: StatisticsAISubscribeMessageRequest) => {	const res = await request.post('/api/common/ai/subscribe/statistic', req);    return res.data.data;  },};export default StatisticsService;
 |