using System;
using System.Collections.Generic;
namespace ChouBox.Model.Entities;
///
/// 财务明细
///
public partial class ProfitMoney2
{
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提现 6提现驳回 7提现手续费
///
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; }
}