增加同步指定博主的作品

This commit is contained in:
lijianyou
2025-10-19 01:11:55 +08:00
parent 14a709e691
commit 59ce4f59ed
25 changed files with 1865 additions and 277 deletions
+2 -2
View File
@@ -336,10 +336,10 @@ namespace dy.net.dto
[JsonProperty("level")]
public int Level { get; set; }
/// <summary>
///
/// 改成long 防止报错
/// </summary>
[JsonProperty("tag_id")]
public int TagId { get; set; }
public long TagId { get; set; }
/// <summary>
/// 人文社科
/// </summary>
+19
View File
@@ -0,0 +1,19 @@
using Newtonsoft.Json;
namespace dy.net.dto
{
public class DyUpSecUserIdDto
{
/// <summary>
/// up主名称
/// </summary>
public string uper { get; set; }
public string uid { get; set; }
/// <summary>
/// 是否同步up主全部视频 0-否 1-是
/// </summary>
public bool syncAll { get; set; }
}
}
+4
View File
@@ -21,5 +21,9 @@
/// 作者/创作者
/// </summary>
public string Author { get; set; }
// 新增的属性
public DateTime? ReleaseDate { get; set; } // 可空,避免无发布时间时的默认值
public IEnumerable<string> Genres { get; set; } // 分类标签集合(如 ["动作", "科幻"]
}
}