using System;
using System.Collections.Generic;
namespace ChouBox.Model.Entities;
///
/// 财务明细
///
public partial class ProfitMoney
{
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背包回收 5推荐奖励
///
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; }
}