This commit is contained in:
2026-03-25 14:55:34 +08:00
commit 2c44b3a4b2
131 changed files with 7453 additions and 0 deletions

View File

@@ -0,0 +1,38 @@
namespace StopShopping.Services.Models.Resp;
/// <summary>
///
/// </summary>
public class User
{
/// <summary>
/// 登录账号
/// </summary>
/// <value></value>
public string Account { get; set; } = string.Empty;
/// <summary>
/// 昵称
/// </summary>
/// <value></value>
public string NickName { get; set; } = string.Empty;
/// <summary>
/// 电话
/// </summary>
/// <value></value>
public string? Telephone { get; set; }
/// <summary>
/// 默认角色
/// </summary>
/// <value></value>
public UserRoles DefaultRole { get; set; }
/// <summary>
/// 头像地址
/// </summary>
/// <value></value>
public string? AvatarUrl { get; set; }
/// <summary>
/// 上次登录时间
/// </summary>
/// <value></value>
public string? LastLoginTime { get; set; }
}