下载完成事件:触发后入库并启动 Jellyfin 轮询匹配

This commit is contained in:
2025-10-10 22:27:36 +08:00
parent 9036f967fc
commit bc39e38ac4
4 changed files with 328 additions and 17 deletions

View File

@@ -1,4 +1,4 @@
using FreeSql.DataAnnotations;
using FreeSql.DataAnnotations;
namespace FATrace.Model
{
@@ -23,13 +23,13 @@ namespace FATrace.Model
/// <summary>
/// 原料名称
/// </summary>
[Column(Name = "InBagCode", IsNullable = false, StringLength = 100)]
[Column(Name = "RawName", IsNullable = false, StringLength = 100)]
public string? RawName{ get; set; }
/// <summary>
/// 视频链接
/// </summary>
[Column(Name = "VideoUrl", IsNullable = false, StringLength = 100)]
[Column(Name = "VideoUrl", IsNullable = false, StringLength = 256)]
public string? VideoUrl{ get; set; }
/// <summary>