using System; using System.Collections.Generic; namespace ChouBox.Model.Entities; /// /// 欧气值明细 /// public partial class ProfitOuQi { 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; } public string? Other { get; set; } }