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