using SqlSugar; namespace dy.net.model.entity { /// /// 永久删除的视频记录-不再下载 /// [SugarTable(TableName = "dy_delete_video")] public class DouyinVideoDelete { /// /// /// [SugarColumn(IsPrimaryKey = true)] public string Id { get; set; } /// /// 原视频Id /// [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; } } }