using SqlSugar;
namespace dy.net.model.entity
{
///
/// 重新下载的列表
///
[SugarTable(TableName = "dy_rd_video")]
public class DouyinReDownload
{
///
///
///
[SugarColumn(IsPrimaryKey = true)]
public string Id { get; set; }
///
/// 原视频Id
///
[SugarColumn(IsNullable = true, Length = 50)]
public string ViedoId { get; set; }
///
/// 原保存目录
///
[SugarColumn(IsNullable = true, Length = 1000)]
public string SavePath { get; set; }
public string CookieId { get; set; }
///
/// 0-未下载 1-下载成功 2-下载失败
///
public int Status { get; set; }
public DateTime CreateTime { get; set; }
public DateTime DownTime { get; set; }
public DateTime UpdateTime { get; set; }
}
}