22 lines
713 B
C#
22 lines
713 B
C#
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);
|
||
}
|
||
}
|
||
|