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