2024-08-09 00:39:39 +08:00
|
|
|
|
using Yi.Framework.Bbs.Domain.Shared.Enums;
|
|
|
|
|
|
|
2024-11-13 19:01:23 +08:00
|
|
|
|
namespace Yi.Framework.Bbs.Application.Contracts.Dtos.Analyse;
|
2024-08-09 00:39:39 +08:00
|
|
|
|
|
2024-11-13 19:01:23 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 用户排行榜
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public class BaseAnalyseTopUserDto
|
2024-08-09 00:39:39 +08:00
|
|
|
|
{
|
2024-11-13 19:01:23 +08:00
|
|
|
|
public Guid UserId { get; set; }
|
2024-08-09 00:39:39 +08:00
|
|
|
|
public string UserName { get; set; }
|
2024-08-09 22:39:27 +08:00
|
|
|
|
public string? Nick { get; set; }
|
|
|
|
|
|
public int Order { get; set; }
|
2024-08-09 00:39:39 +08:00
|
|
|
|
public string? Icon { get; set; }
|
|
|
|
|
|
public int Level { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 用户等级名称
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string LevelName { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 用户限制
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public UserLimitEnum UserLimit { get; set; }
|
|
|
|
|
|
}
|