feat: add fnOS packaging, storage workflows and release pipeline
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user