代码整理

This commit is contained in:
jianzhichu
2026-01-23 22:24:00 +08:00
parent 60f6e3847d
commit 3f6b1874eb
60 changed files with 348 additions and 991 deletions
+9 -10
View File
@@ -1,5 +1,4 @@
using Newtonsoft.Json;
using SqlSugar;
using SqlSugar;
namespace dy.net.model.entity
{
@@ -18,18 +17,18 @@ namespace dy.net.model.entity
/// <summary>
/// 博主sec_uid
/// </summary>
[SugarColumn(IsNullable = false,Length =500)]
[SugarColumn(IsNullable = false, Length = 500)]
public string SecUid { get; set; }
[SugarColumn(IsNullable = false, Length =200)]
[SugarColumn(IsNullable = false, Length = 200)]
public string UperName { get; set; }
[SugarColumn(IsNullable = true, Length =1000)]
[SugarColumn(IsNullable = true, Length = 1000)]
public string UperAvatar { get; set; }
/// <summary>
/// 官方账号(企业认证)
/// </summary>
[SugarColumn(IsNullable = true, Length =200)]
[SugarColumn(IsNullable = true, Length = 200)]
public string Enterprise { get; set; }
/// <summary>
/// 是否开启同步
@@ -47,25 +46,25 @@ namespace dy.net.model.entity
/// <summary>
/// 我的userId,关注者的抖音userid
/// </summary>
[SugarColumn(IsNullable = false,Length =200)]
[SugarColumn(IsNullable = false, Length = 200)]
public string mySelfId { get; set; }
/// <summary>
/// 签名
/// </summary>
[SugarColumn(IsNullable = true,Length =500)]
[SugarColumn(IsNullable = true, Length = 500)]
public string Signature { get; set; }
/// <summary>
/// 同步文件保存路径
/// </summary>
[SugarColumn(IsNullable = true,Length =500)]
[SugarColumn(IsNullable = true, Length = 500)]
public string SavePath { get; set; }
/// <summary>
/// 博主Id
/// </summary>
[SugarColumn(IsNullable = true,Length =100)]
[SugarColumn(IsNullable = true, Length = 100)]
public string UperId { get; set; }
/// <summary>