添加参数

This commit is contained in:
he
2022-04-12 09:05:26 +08:00
parent bbcf9bf9e7
commit 1a2dbd150a
5 changed files with 54 additions and 2 deletions
@@ -77,7 +77,17 @@ namespace IRaCIS.Core.Application.ViewModel
/// <summary>
/// 标识
/// </summary>
public string Identification { get; set; }
public string Identification { get; set; } = string.Empty;
/// <summary>
/// 是否完成
/// </summary>
public bool? IsFinish { get; set; }
/// <summary>
/// 是否加入计划
/// </summary>
public bool? IsJoinPlan { get; set; }
@@ -199,6 +209,16 @@ namespace IRaCIS.Core.Application.ViewModel
/// </summary>
public bool? IsHaveReason { get; set; }
/// <summary>
/// 是否完成
/// </summary>
public bool? IsFinish { get; set; }
/// <summary>
/// 是否加入计划
/// </summary>
public bool? IsJoinPlan { get; set; }
}