This commit is contained in:
Putoo
2026-06-05 18:06:38 +08:00
parent 5195407266
commit 1927e3f960
17 changed files with 575 additions and 27 deletions

View File

@@ -18,6 +18,12 @@ namespace Application.Domain.Entity
[SugarColumn(Length = 50, IsNullable = true)]
public string? mapId { get; set; }
/// <summary>
/// 等级
/// </summary>
[SugarColumn(IsNullable = true)]
public int? lev { get; set; }
/// <summary>
/// 资源名称
/// </summary>
@@ -45,8 +51,8 @@ namespace Application.Domain.Entity
/// <summary>
/// 成功率
/// </summary>
[SugarColumn(Length = 18, IsNullable = true)]
public decimal? okRadio { get; set; }
[SugarColumn(IsNullable = true)]
public int? okRadio { get; set; }
/// <summary>
/// 采集锁定时间
@@ -54,4 +60,4 @@ namespace Application.Domain.Entity
[SugarColumn(IsNullable = true)]
public int? gatherTime { get; set; }
}
}
}

View File

@@ -0,0 +1,45 @@
using SqlSugar;
using System;
namespace Application.Domain.Entity
{
[Tenant("Kg.SeaTime.Resource")]
public class game_skill
{
/// <summary>
/// skill
/// </summary>
[SugarColumn(IsPrimaryKey = true)]
public int skill { get; set; }
/// <summary>
/// code
/// </summary>
[SugarColumn(Length = 50, IsNullable = true)]
public string? code { get; set; }
/// <summary>
/// name
/// </summary>
[SugarColumn(Length = 50, IsNullable = true)]
public string? name { get; set; }
/// <summary>
/// lev
/// </summary>
[SugarColumn(IsNullable = true)]
public int? lev { get; set; }
/// <summary>
/// sign
/// </summary>
[SugarColumn(IsNullable = true)]
public string? sign { get; set; }
/// <summary>
/// remark
/// </summary>
[SugarColumn(IsNullable = true)]
public string? remark { get; set; }
}
}