完成合集、短剧

This commit is contained in:
jianzhichu
2026-01-22 08:33:59 +08:00
parent 7175b3858a
commit e270397334
51 changed files with 3502 additions and 1411 deletions
+4
View File
@@ -19,6 +19,10 @@ namespace dy.net.model.dto
public string? Tag { get; set; }
public string? SortField { get; set; }
public string? SortOrder { get; set; }
}
+40
View File
@@ -0,0 +1,40 @@
namespace dy.net.model.dto
{
public class VideoChartItemDto
{
/// <summary>
/// 日期,格式MM-DD(如01-21
/// </summary>
public string Date { get; set; } = string.Empty;
/// <summary>
/// 我喜欢的数量
/// </summary>
public int Favorite { get; set; }
/// <summary>
/// 我收藏的数量
/// </summary>
public int Collect { get; set; }
/// <summary>
/// 我关注的数量
/// </summary>
public int Follow { get; set; }
/// <summary>
/// 图文视频数量
/// </summary>
public int Graphic { get; set; }
/// <summary>
/// 合集数量
/// </summary>
public int Mix { get; set; }
/// <summary>
/// 短剧数量
/// </summary>
public int Series { get; set; }
}
}
+5
View File
@@ -31,11 +31,16 @@
public string VideoFollowSize { get; set; }
public string VideoFavoriteSize { get; set; }
public string VideoMixSize { get; set; }
public string VideoSeriesSize { get; set; }
public long CollectCount { get; set; }
public long FavoriteCount { get; set; }
public long FollowCount { get; set; }
public long MixCount { get; set; }
public long SeriesCount { get; set; }
public long GraphicVideoCount { get; set; }
public string GraphicVideoSize { get; set; }