收藏夹 服务

This commit is contained in:
jianzhichu
2026-01-19 14:11:23 +08:00
parent f5449f3ace
commit 65e6b48d8e
13 changed files with 401 additions and 15 deletions
+8 -1
View File
@@ -1,9 +1,16 @@
namespace dy.net.model.dto
{
public class DouyinCookieStopDto
public class DouyinCookieSwitchDto
{
public string Id { get; set; }
public int Status { get; set; }
}
public class DouyinCollectCateSwitchDto
{
public string Id { get; set; }
public bool Sync { get; set; }
}
}
+8
View File
@@ -52,4 +52,12 @@ namespace dy.net.model.dto
public string UperId { get; set; }
}
public class DouyinCollectCateRequestDto : PageRequestDto
{
public string cookieId { get; set; }
}
}
+6 -2
View File
@@ -18,7 +18,7 @@ namespace dy.net.model.entity
/// <summary>
/// 关联cookieId
/// </summary>
public long CookieId { get; set; }
public string CookieId { get; set; }
/// <summary>
/// 收藏夹名称
@@ -47,6 +47,10 @@ namespace dy.net.model.entity
/// <summary>
/// 收藏夹类型(0:自定义收藏夹,1:合集,2:短剧)
/// </summary>
public int CollectType { get; set; }
public int CateType { get; set; }
public DateTime CreateTime { get; set; }
public DateTime UpdateTime { get; set; }
}
}