using SqlSugar; namespace dy.net.model.entity { /// /// 收藏夹-自定义收藏夹、合集、短剧 /// [SugarTable(TableName = "dy_collect_cate")] public class DouyinCollectCate { /// /// /// [SugarColumn(IsPrimaryKey = true)] public string Id { get; set; } /// /// 关联cookieId /// public long CookieId { get; set; } /// /// 收藏夹名称 /// [SugarColumn(Length = 500, IsNullable = false)] public string Name { get; set; } /// /// 收藏夹Id /// [SugarColumn(Length =60,IsNullable =false)] public string XId { get; set; } /// /// 封面 /// public string CoverUrl { get; set; } /// /// 保存文件夹 /// public string SaveFolder { get; set; } /// /// 是否开启同步 /// public bool Sync { get; set; } /// /// 收藏夹类型(0:自定义收藏夹,1:合集,2:短剧) /// public int CollectType { get; set; } } }