using SqlSugar; namespace dy.net.model { [SugarTable(TableName = "dy_cookie")] public class DyUserCookies { [SqlSugar.SugarColumn(IsPrimaryKey = true)] public string Id { get; set; } /// /// 用户账号-唯一就行,手机号啥的 /// //public string UserId { get; set; } /// /// 用户描述 /// public string UserName { get; set; } /// /// 用户抖音Cookie /// [SugarColumn(Length =-1,IsNullable =true)] public string Cookies { get; set; } /// /// 存储路径 /// [SugarColumn(Length =255,IsNullable =true)] public string SavePath { get; set; } public int Status { get; set; } /// /// 同步喜欢的视频需要sec_user_id /// [SugarColumn(Length =500,IsNullable =true)] public string SecUserId { get; set; } /// /// 喜欢的视频存储路径 /// [SugarColumn(Length =500,IsNullable =true)] public string FavSavePath { get; set; } } }