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
+7
View File
@@ -135,6 +135,13 @@ namespace dy.net.service
return count > 0;
}
public async Task<DouyinVideoDelete> GetDeleteVideoAsync(string videoId)
{
if (string.IsNullOrWhiteSpace(videoId)) return null;
return await sqlSugarClient.Queryable<DouyinVideoDelete>()
.Where(x => x.ViedoId == videoId).OrderByDescending(x => x.DeleteTime).FirstAsync();
}
/// <summary>
/// 新增要删除的视频
/// </summary>