live-forum/server/webapi/LiveForum/LiveForum.IService/Streamers/IStreamersService.cs
2026-03-24 11:27:37 +08:00

22 lines
713 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using LiveForum.Code.Base;
using LiveForum.Model.Dto.Streamers;
namespace LiveForum.IService.Streamers
{
/// <summary>
/// 主播服务接口
/// </summary>
public interface IStreamersService
{
/// <summary>
/// 上报主播数据(粉丝、收入、直播状态等)
/// </summary>
/// <param name="request">上报请求参数</param>
/// <param name="category">主播分类从URL参数获取</param>
/// <param name="logId">日志ID从URL参数获取</param>
/// <returns></returns>
Task<BaseResponse<StreamerReportRespDto>> ReportStreamerData(StreamerReportReq request, string category, string logId);
}
}