HuanMengAdmin/admin-server/MiaoYu.Repository.ChatAI.Admin/Entities/Apps/T_User_Currency_Log.cs
2024-07-29 01:55:29 +08:00

53 lines
1.1 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

namespace MiaoYu.Repository.ChatAI.Admin.Entities.Apps;
/// <summary>
/// 用户金额记录表
/// </summary>
[EntityDescription(FieldIgnored = true)]
public class T_User_Currency_Log : DefaultEntityV4
{
/// <summary>
/// 用户 => 备注: 用户
/// </summary>
public Int32 UserId { get; set; }
/// <summary>
/// 金额类型 => 备注: 金额类型
/// </summary>
public Int32 CurrencyType { get; set; }
/// <summary>
/// 金额 => 备注: 金额
/// </summary>
public Decimal Consume { get; set; }
/// <summary>
/// 消耗类型 => 备注: 消耗类型,0消耗1增加
/// </summary>
public Int32 ConsumeType { get; set; }
/// <summary>
/// 备注 => 备注: 备注
/// </summary>
public string? Remarks { get; set; }
/// <summary>
/// 创建时间 => 备注: 创建时间
/// </summary>
public DateTime CreateTime { get; set; }
/// <summary>
/// 修改时间 => 备注: 修改时间
/// </summary>
public DateTime UpdateTime { get; set; }
}