This commit is contained in:
jianzhichu
2026-02-06 23:17:50 +08:00
parent c1d5db18a9
commit 8b98abc94d
17 changed files with 268 additions and 126 deletions
+3
View File
@@ -69,5 +69,8 @@ namespace dy.net.model.entity
/// 标记为非关注的用户-手动增加的
/// </summary>
public bool IsNoFollowed { get; set; }
[SugarColumn(IsNullable = true, Length = 100)]
public string DouyinNo { get; set; }
}
}
+19 -19
View File
@@ -1,25 +1,25 @@
//using SqlSugar;
using SqlSugar;
//namespace dy.net.model.entity
//{
// /// <summary>
// ///
// /// </summary>
namespace dy.net.model.entity
{
/// <summary>
///
/// </summary>
// [SqlSugar.SugarTable("dy_videoup")]
// public class DouyinVideoUp
// {
// /// <summary>
// ///
// /// </summary>
// [SugarColumn(IsPrimaryKey = true)]
// public string Id { get; set; }
[SqlSugar.SugarTable("dy_videoup")]
public class DouyinVideoUp
{
/// <summary>
///
/// </summary>
[SugarColumn(IsPrimaryKey = true)]
public string Id { get; set; }
// [SugarColumn(IsNullable = false, Length = 100)]
// public string UperId { get; set; }
[SugarColumn(IsNullable = false, Length = 100)]
public string UperId { get; set; }
// public string SavePath { get; set; }
// }
//}
public string SavePath { get; set; }
}
}