feat:搭建积分领域

This commit is contained in:
陈淳
2024-01-11 18:51:53 +08:00
parent 3ee8419802
commit 5a65a2e49f
46 changed files with 466 additions and 80 deletions

View File

@@ -27,15 +27,27 @@ namespace Yi.Framework.Bbs.Domain.Entities
/// </summary>
public Guid UserId { get; set; }
/// <summary>
/// 用户限制
/// </summary>
public UserLimitEnum UserLimit { get; set; } = UserLimitEnum.Normal;
/// <summary>
/// 用户等级
/// </summary>
public int Level { get; set; } = 1;
/// <summary>
/// 用户限制
/// 钱钱
/// </summary>
public UserLimitEnum UserLimit { get; set; } = UserLimitEnum.Normal;
public decimal Money { get; set; } = 0m;
/// <summary>
/// 经验
/// </summary>
public long Experience { get; set; } = 0;
}
}