This commit is contained in:
Putoo
2026-06-02 17:58:36 +08:00
parent eb81a1c381
commit 8550d85659
11 changed files with 392 additions and 2 deletions

View File

@@ -0,0 +1,28 @@
using SqlSugar;
using System;
namespace Application.Domain.Entity
{
[Tenant("Kg.SeaTime.Game")]
public class unit_user_map
{
/// <summary>
/// umId
/// </summary>
[SugarColumn(IsPrimaryKey = true, Length = 50)]
public string umId { get; set; }
/// <summary>
/// userId
/// </summary>
[SugarColumn(Length = 50, IsNullable = true)]
public string? userId { get; set; }
/// <summary>
/// cityId
/// </summary>
[SugarColumn(IsNullable = true)]
public int? cityId { get; set; }
}
}

View File

@@ -0,0 +1,9 @@
namespace Application.Domain.Entity;
public class MapTemp
{
public int cityId { get; set; }
public string cityName { get; set; }
public int copper { get; set; }
public int distance { get; set; }
}