This commit is contained in:
Putoo
2026-07-16 17:52:33 +08:00
parent 2cd2ed02f8
commit 00c2758df2
43 changed files with 897 additions and 72 deletions

View File

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

View File

@@ -39,8 +39,8 @@ namespace Application.Domain.Entity
/// <summary>
/// attr
/// </summary>
[SugarColumn(Length = 1000, IsNullable = true)]
public string attr { get; set; }
[SugarColumn(IsNullable = true, IsJson = true)]
public List<AttrItem> attr { get; set; }
/// <summary>
/// count
@@ -66,4 +66,4 @@ namespace Application.Domain.Entity
[SugarColumn(IsNullable = true)]
public int? show { get; set; }
}
}
}