优化
This commit is contained in:
@@ -125,6 +125,6 @@ namespace dy.net.model
|
||||
public string ViedoTypeStr => ViedoType == "1" ? "我喜欢的" : "我收藏的";
|
||||
|
||||
[SugarColumn(IsIgnore = true)]
|
||||
public string ViedoCate =>(string.IsNullOrEmpty(Tag1) ? "" : Tag1) + "/" + (string.IsNullOrEmpty(Tag2) ? "" : Tag2);
|
||||
public string ViedoCate =>(string.IsNullOrWhiteSpace(Tag1) ? "" : Tag1) + "/" + (string.IsNullOrWhiteSpace(Tag2) ? "" : Tag2);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -41,5 +41,16 @@ namespace dy.net.model
|
||||
/// </summary>
|
||||
[SugarColumn(Length =500,IsNullable =true)]
|
||||
public string FavSavePath { get; set; }
|
||||
|
||||
///// <summary>
|
||||
///// 最新收藏夹的分页页码
|
||||
///// </summary>
|
||||
//[SugarColumn(Length =500,IsNullable =true)]
|
||||
//public string CollectMaxCursor { get; set; }
|
||||
///// <summary>
|
||||
///// 最新我喜欢的分页页码
|
||||
///// </summary>
|
||||
//[SugarColumn(Length = 500, IsNullable = true)]
|
||||
//public string FavoriteMaxCursor { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user