This commit is contained in:
he
2023-05-08 17:04:36 +08:00
parent 520aa26a11
commit 2fbd0b09f6
7 changed files with 82 additions and 26 deletions
+6 -1
View File
@@ -88,7 +88,12 @@ namespace IRaCIS.Core.Domain.Models
public bool IsTestUser { get; set; }
[Projectable] public string FullName => LastName + " / " + FirstName;
/// <summary>
/// 自动切换下一个任务
/// </summary>
public bool AutoCutNextTask { get; set; } = false;
[Projectable] public string FullName => LastName + " / " + FirstName;
//[Projectable] public string FullName => $"{LastName} / {FirstName}";
}