using SqlSugar;
using System;
namespace Application.Domain.Entity
{
[Tenant("Kg.SeaTime.Log")]
public class game_exchange_log
{
///
/// ueId
///
[SugarColumn(IsPrimaryKey = true, Length = 50)]
public string ueId { get; set; }
///
/// userId
///
[SugarColumn(Length = 50, IsNullable = true)]
public string? userId { get; set; }
///
/// exId
///
[SugarColumn(IsNullable = true)]
public int? exId { get; set; }
///
/// count
///
[SugarColumn(IsNullable = true)]
public int? count { get; set; }
///
/// addTime
///
[SugarColumn(IsNullable = true)]
public long? addTime { get; set; }
///
/// endTime
///
[SugarColumn(IsNullable = true)]
public long? endTime { get; set; }
}
}