This commit is contained in:
he
2023-05-05 15:22:07 +08:00
parent 6da34061da
commit 3a03eec1ab
3 changed files with 228 additions and 84 deletions
@@ -131,7 +131,9 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
public bool IsConvertedTask { get; set; }
public bool IsAnalysisCreate { get; set; }
public Guid? BeforeConvertedTaskId { get; set; }
public bool IsAnalysisCreate { get; set; }
public bool? IsSelfAnalysis { get; set; }
@@ -295,7 +297,13 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
public Func<ChangeAllTaskDto,Task> ChangeAllTaskFun { get; set; }
public bool? IsConvertedTask { get; set; }
}
/// <summary>
/// 是否是正在转化
/// </summary>
public bool IsBeTransforming { get; set; } = false;
}
}