在 `TaskAllocationView.cs` 文件中: - 添加了 `OverTime` 属性,类型为 `string?`,用于表示实际完成时间。 - 为 `OverTime` 属性添加了 XML 注释,描述其用途。
@@ -176,6 +176,10 @@ namespace OASystem.Domain.ViewModels.PersonnelModule
/// </summary>
public string? PredictEndTime { get; set; }
/// <summary>
+ /// 实际完成时间
+ /// </summary>
+ public string? OverTime { get; set; }
+ /// <summary>
/// 任务参与者
public string? Participant { get; set; }