This commit is contained in:
Putoo
2026-06-03 18:21:22 +08:00
parent 8550d85659
commit 8b8eb732ae
11 changed files with 653 additions and 4 deletions

View File

@@ -0,0 +1,69 @@
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; }
}
}

View File

@@ -41,5 +41,11 @@ namespace Application.Domain.Entity
/// </summary>
[SugarColumn(IsNullable = true)]
public int? weight { get; set; }
/// <summary>
/// copper
/// </summary>
[SugarColumn(IsNullable = true)]
public int? copper { get; set; }
}
}