短剧、合集

This commit is contained in:
jianzhichu
2026-01-20 00:20:37 +08:00
parent 7c6ee0a8a6
commit 7175b3858a
25 changed files with 779 additions and 745 deletions
+9 -4
View File
@@ -1,4 +1,5 @@
using SqlSugar;
using dy.net.model.dto;
using SqlSugar;
namespace dy.net.model.entity
{
@@ -26,7 +27,7 @@ namespace dy.net.model.entity
[SugarColumn(Length = 500, IsNullable = false)]
public string Name { get; set; }
/// <summary>
/// 收藏夹Id
/// 收藏夹Id、合集Id、短剧Id
/// </summary>
[SugarColumn(Length =60,IsNullable =false)]
public string XId { get; set; }
@@ -45,12 +46,16 @@ namespace dy.net.model.entity
public bool Sync { get; set; }
/// <summary>
/// 收藏夹类型(0:自定义收藏夹,1:合集,2:短剧)
/// 收藏夹类型(5:自定义收藏夹,6:合集,7:短剧)
/// </summary>
public int CateType { get; set; }
public VideoTypeEnum CateType { get; set; }
public DateTime CreateTime { get; set; }
public DateTime UpdateTime { get; set; }
/// <summary>
/// 是否已完结
/// </summary>
public bool IsEnd { get; set; }
}
}
+6
View File
@@ -159,5 +159,11 @@ namespace dy.net.model.entity
/// 是否仅下载图片或仅下载音频
/// </summary>
public bool OnlyImgOrOnlyMp3 { get; set; }
/// <summary>
/// 自定义收藏夹、合集、短剧 绑定的Id
/// </summary>
[SugarColumn(Length =200,IsNullable =true)]
public string CateId { get; set; }
}
}