feat: add fnOS packaging, storage workflows and release pipeline

This commit is contained in:
2026-08-11 18:05:49 +08:00
parent c5922f9b08
commit 95932f0199
181 changed files with 24024 additions and 1164 deletions
+9
View File
@@ -25,6 +25,8 @@ namespace dy.net.model.entity
public string SavePath { get; set; }
public string CookieId { get; set; }
[SugarColumn(IsNullable = true, Length = 100)]
public string VideoRecordId { get; set; }
/// <summary>
/// 0-未下载 1-下载成功 2-下载失败
/// </summary>
@@ -33,5 +35,12 @@ namespace dy.net.model.entity
public DateTime CreateTime { get; set; }
public DateTime DownTime { get; set; }
public DateTime UpdateTime { get; set; }
public int Attempts { get; set; }
[SugarColumn(ColumnDataType = "TEXT", Length = -1, IsNullable = true)]
public string ErrorMessage { get; set; }
[SugarColumn(Length = 50, IsNullable = true)]
public string TaskId { get; set; }
[SugarColumn(Length = 50, IsNullable = true)]
public string TaskItemId { get; set; }
}
}