feat: 完成商城系统

This commit is contained in:
橙子
2024-11-03 15:49:41 +08:00
parent fe7211860f
commit 1468a7b878
6 changed files with 153 additions and 41 deletions

View File

@@ -0,0 +1,27 @@
namespace Yi.Framework.Bbs.Domain.Shared.Etos;
public class SetAccountInfoEto
{
public SetAccountInfoEto(Guid userId)
{
UserId = userId;
}
public Guid UserId { get; set; }
/// <summary>
/// 钱钱
/// </summary>
public decimal Money { get; set; }
/// <summary>
/// 积分
/// </summary>
public int Points { get; set; }
/// <summary>
/// 价值
/// </summary>
public decimal Value { get; set; }
}