Files
Kg.SeaTime/Service/Application.Domain.Entity/game/user/unit_user_run.cs
2026-06-03 18:21:22 +08:00

69 lines
1.7 KiB
C#

using SqlSugar;
using System;
namespace Application.Domain.Entity
{
[Tenant("Kg.SeaTime.Game")]
public class unit_user_run
{
/// <summary>
/// userId
/// </summary>
[SugarColumn(IsPrimaryKey = true, Length = 50)]
public string userId { get; set; }
/// <summary>
/// 区服
/// </summary>
[SugarColumn(IsNullable = true)]
public int? areaId { get; set; }
/// <summary>
/// 路线
/// </summary>
[SugarColumn(Length = 255, IsNullable = true)]
public string? lineCode { get; set; }
/// <summary>
/// onMap
/// </summary>
[SugarColumn(Length = 10, IsNullable = true)]
public string? onMap { get; set; }
/// <summary>
/// toMap
/// </summary>
[SugarColumn(Length = 10, IsNullable = true)]
public string? toMap { get; set; }
/// <summary>
/// 距离
/// </summary>
[SugarColumn(IsNullable = true)]
public int? distance { get; set; }
/// <summary>
/// 位置
/// </summary>
[SugarColumn(IsNullable = true)]
public int? position { get; set; }
/// <summary>
/// 深度
/// </summary>
[SugarColumn(IsNullable = true)]
public int? depth { get; set; }
/// <summary>
/// 状态
/// </summary>
[SugarColumn(IsNullable = true)]
public int? status { get; set; }
/// <summary>
/// 更新时间
/// </summary>
[SugarColumn(IsNullable = true)]
public long? upTime { get; set; }
}
}