结构调整

This commit is contained in:
jianzhichu
2026-01-19 09:57:40 +08:00
parent d9cb721f64
commit f5449f3ace
77 changed files with 4060 additions and 1516 deletions
+29
View File
@@ -0,0 +1,29 @@
using SqlSugar;
namespace dy.net.model.entity
{
/// <summary>
/// 永久删除的视频记录-不再下载
/// </summary>
[SugarTable(TableName = "dy_delete_video")]
public class DouyinVideoDelete
{
/// <summary>
///
/// </summary>
[SugarColumn(IsPrimaryKey = true)]
public string Id { get; set; }
/// <summary>
/// 原视频Id
/// </summary>
[SugarColumn(IsNullable =true,Length =50)]
public string ViedoId { get; set; }
public DateTime DeleteTime { get; set; }
[SugarColumn(IsNullable =true,Length =1000)]
public string VideoTitle { get; set; }
[SugarColumn(IsNullable = true, Length = 1000)]
public string VideoSavePath { get; set; }
}
}