完成合集、短剧
This commit is contained in:
@@ -19,6 +19,10 @@ namespace dy.net.model.dto
|
||||
|
||||
public string? Tag { get; set; }
|
||||
|
||||
public string? SortField { get; set; }
|
||||
|
||||
public string? SortOrder { get; set; }
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -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; }
|
||||
}
|
||||
}
|
||||
@@ -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; }
|
||||
|
||||
Reference in New Issue
Block a user