fix: 更换银行模块源及修复钱钱小数

This commit is contained in:
chenchun
2024-06-13 15:56:58 +08:00
parent 14db420cbe
commit 5b109e91d1
4 changed files with 26 additions and 3 deletions

View File

@@ -3,13 +3,16 @@ using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using static System.Runtime.InteropServices.JavaScript.JSType;
namespace Yi.Framework.Bbs.Domain.Shared.Etos
{
public class MoneyChangeEventArgs
{
public MoneyChangeEventArgs() { }
public MoneyChangeEventArgs(Guid userId, decimal changeNumber) { UserId = userId; Number = changeNumber; }
public MoneyChangeEventArgs(Guid userId, decimal changeNumber) { UserId = userId;
Number = Math.Round(changeNumber, 2); }
/// <summary>
/// 用户id