using System;
using System.Collections.Generic;
namespace ChouBox.Model.Entities;
///
/// 财务明细
///
public partial class ProfitIntegral
{
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; }
}