94 lines
2.2 KiB
C#
94 lines
2.2 KiB
C#
using SqlSugar;
|
|
using System;
|
|
|
|
namespace Application.Domain.Entity
|
|
{
|
|
[Tenant("Kg.SeaTime.Game")]
|
|
public class game_onhook
|
|
{
|
|
/// <summary>
|
|
/// userId
|
|
/// </summary>
|
|
[SugarColumn(IsPrimaryKey = true, Length = 50)]
|
|
public string userId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 场景
|
|
/// </summary>
|
|
[SugarColumn(Length = 50, IsNullable = true)]
|
|
public string? scene { get; set; }
|
|
|
|
/// <summary>
|
|
/// copper
|
|
/// </summary>
|
|
[SugarColumn(IsNullable = true)]
|
|
public long? copper { get; set; }
|
|
|
|
/// <summary>
|
|
/// exp
|
|
/// </summary>
|
|
[SugarColumn(IsNullable = true)]
|
|
public long? exp { get; set; }
|
|
|
|
/// <summary>
|
|
/// status
|
|
/// </summary>
|
|
[SugarColumn(IsNullable = true)]
|
|
public int? status { get; set; }
|
|
|
|
/// <summary>
|
|
/// name
|
|
/// </summary>
|
|
[SugarColumn(Length = 50, IsNullable = true)]
|
|
public string? name { get; set; }
|
|
|
|
/// <summary>
|
|
/// award
|
|
/// </summary>
|
|
[SugarColumn(IsNullable = true)]
|
|
public string? award { get; set; }
|
|
|
|
/// <summary>
|
|
/// 平分
|
|
/// </summary>
|
|
[SugarColumn(Length = 60, IsNullable = true)]
|
|
public decimal? score { get; set; }
|
|
|
|
/// <summary>
|
|
/// 时间/秒
|
|
/// </summary>
|
|
[SugarColumn(IsNullable = true)]
|
|
public int? time { get; set; }
|
|
|
|
/// <summary>
|
|
/// uptime
|
|
/// </summary>
|
|
[SugarColumn(IsNullable = true)]
|
|
public DateTime? uptime { get; set; }
|
|
|
|
/// <summary>
|
|
/// endTime
|
|
/// </summary>
|
|
[SugarColumn(IsNullable = true)]
|
|
public DateTime? endTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 停止时间
|
|
/// </summary>
|
|
[SugarColumn(IsNullable = true)]
|
|
public long? stopTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// sumCopper
|
|
/// </summary>
|
|
[SugarColumn(IsNullable = true)]
|
|
public long? sumCopper { get; set; }
|
|
|
|
/// <summary>
|
|
/// sumExp
|
|
/// </summary>
|
|
[SugarColumn(IsNullable = true)]
|
|
public long? sumExp { get; set; }
|
|
}
|
|
}
|