1、去重

2、分享
3、视频播放
4、批量删除,重新下载
5、自定义标题(仅博主视频)
6、授权页面去掉博主添加,新增关注列表
7、图文视频合成优化
8、其他优化
This commit is contained in:
jianzhichu
2025-11-30 00:42:25 +08:00
parent 63b51d211e
commit e6e9ff3cc3
94 changed files with 8155 additions and 1544 deletions
+28 -3
View File
@@ -4,15 +4,19 @@ namespace dy.net.dto
{
public class DouyinVideoPageRequestDto : PageRequestDto
{
// 3. 引用类型(string)如果允许为null,显式声明为 string?
public string? Tag { get; set; }
/// <summary>
/// 标题查询。
/// </summary>
public string? Title { get; set; }
public string? Author { get; set; }
//public string? Name { get; set; }
public string? ViedoType { get; set; }
// 4. 泛型集合(List<string>)允许为null,声明为 List<string>?
public List<string>? Dates { get; set; }
public List<string>? Dates2 { get; set; }
}
@@ -23,4 +27,25 @@ namespace dy.net.dto
public int PageSize { get; set; } = 10;
}
public class FollowRequestDto: PageRequestDto
{
public string FollowUserName { get; set; }
public string MySelfId { get; set; }
}
public class FollowUpdateDto
{
public string Id { get; set; }
public bool OpenSync { get; set; }
public bool FullSync { get; set; }
public string SavePath { get; set; }
}
}