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; }
}
}
}