This commit is contained in:
Putoo
2026-07-18 11:24:44 +08:00
parent e4d39f3f2f
commit 723a6861a0
9 changed files with 158 additions and 41 deletions

View File

@@ -62,12 +62,14 @@ namespace Application.Domain.Entity
[SugarColumn(Length = 50, IsNullable = true)]
public string? winCode { get; set; }
/// <summary>
/// 胜利方
/// </summary>
[SugarColumn(Length = 50, IsNullable = true)]
public string? winUser { get; set; }
/// <summary>
/// 经验
/// </summary>
@@ -91,9 +93,16 @@ namespace Application.Domain.Entity
/// </summary>
[SugarColumn(IsNullable = true)]
public string? award { get; set; }
[SugarColumn(IsNullable = true)]
[SugarColumn(IsNullable = true)]
public string? pars { get; set; }
/// <summary>
/// 预计用时
/// </summary>
[SugarColumn(IsNullable = true)]
public long? dueTime { get; set; }
/// <summary>
/// addTime
/// </summary>
@@ -112,4 +121,4 @@ namespace Application.Domain.Entity
[SugarColumn(IsNullable = true)]
public long? endTime { get; set; }
}
}
}