using System; using System.Collections.Generic; namespace ChouBox.Model.Entities; /// /// 财务明细 /// public partial class ProfitScore { public uint Id { get; set; } /// /// 用户id /// public uint UserId { get; set; } /// /// 变化的金额 /// public decimal ChangeMoney { get; set; } /// /// 变化后的金额 /// public decimal Money { get; set; } /// /// 1后台充值 2抽赏消费 3升级获得 4抽赏奖励 /// public byte Type { get; set; } /// /// 描述 /// public string Content { get; set; } = null!; /// /// 添加时间 /// public uint Addtime { get; set; } /// /// 来源ID /// public uint ShareUid { get; set; } public string? Other { get; set; } }