1、增加图片视频

2、优化代码结构
3、up主下载分类逻辑可配置
This commit is contained in:
jianzhichu
2025-11-23 00:46:41 +08:00
parent 7cacdaedd4
commit 8cef13c926
51 changed files with 1604 additions and 1667 deletions
+36
View File
@@ -0,0 +1,36 @@
using System.Diagnostics.CodeAnalysis;
namespace dy.net.model
{
[SqlSugar.SugarTable(TableName = "login_user_info")]
public class AdminUserInfo
{
public string UserName { get; set;}
public string Password { get; set; }
[SqlSugar.SugarColumn(IsPrimaryKey = true)]
public string Id { get; set; }
public DateTime CreateTime { get; set; }
/// <summary>
/// 更新时间
/// </summary>
[SqlSugar.SugarColumn(IsNullable = true)]
public DateTime UpdateTime { get; set; }
/// <summary>
/// 原密码,不存在数据库
/// </summary>
[SqlSugar.SugarColumn(IsIgnore =true)]
public string? OldPwd { get; set; }
/// <summary>
/// 头像
/// </summary>
[SqlSugar.SugarColumn(IsNullable = true)]
public string Avatar { get; set; }
}
}