ChouBox/ChouBox.Model/Entities/ProfitMoney2.cs
2025-04-23 19:20:23 +08:00

50 lines
1016 B
C#

using System;
using System.Collections.Generic;
namespace ChouBox.Model.Entities;
/// <summary>
/// 财务明细
/// </summary>
public partial class ProfitMoney2
{
public uint Id { get; set; }
/// <summary>
/// 用户id
/// </summary>
public uint UserId { get; set; }
/// <summary>
/// 变化的金额
/// </summary>
public decimal ChangeMoney { get; set; }
/// <summary>
/// 变化后的金额
/// </summary>
public decimal Money { get; set; }
/// <summary>
/// 1后台充值 2在线充值 3市集消费 4市集售卖 5提现 6提现驳回 7提现手续费
/// </summary>
public byte Type { get; set; }
/// <summary>
/// 描述
/// </summary>
public string Content { get; set; } = null!;
/// <summary>
/// 添加时间
/// </summary>
public uint Addtime { get; set; }
/// <summary>
/// 来源ID
/// </summary>
public uint ShareUid { get; set; }
public string? Other { get; set; }
}