修改一版
This commit is contained in:
@@ -144,6 +144,11 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||
/// </summary>
|
||||
public Guid? ParentId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 备注
|
||||
/// </summary>
|
||||
public string Remark { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 类型值
|
||||
@@ -167,6 +172,11 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||
/// </summary>
|
||||
public Guid Id { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 备注
|
||||
/// </summary>
|
||||
public string Remark { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 系统标准Id
|
||||
/// </summary>
|
||||
@@ -358,6 +368,11 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||
public bool IsJudgeQuestion { get; set; } = false;
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 备注
|
||||
/// </summary>
|
||||
public string Remark { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// 类型值
|
||||
/// </summary>
|
||||
@@ -388,6 +403,11 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
||||
/// </summary>
|
||||
public bool IsJudgeQuestion { get; set; } = false;
|
||||
|
||||
/// <summary>
|
||||
/// 备注
|
||||
/// </summary>
|
||||
public string Remark { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// 类型
|
||||
/// </summary>
|
||||
|
||||
@@ -260,6 +260,7 @@ namespace IRaCIS.Application.Services
|
||||
IsEnable = false,
|
||||
ReadingQuestionCriterionSystemId = x.Id,
|
||||
TrialId = trialId,
|
||||
IsCompleteConfig=x.IsCompleteConfig,
|
||||
Id = NewId.NextGuid(),
|
||||
};
|
||||
List<ReadingQuestionSystem> systemQuestionList = x.ReadingQuestionSystemList.Clone();
|
||||
@@ -299,6 +300,8 @@ namespace IRaCIS.Application.Services
|
||||
ReadingQuestionCriterionTrialId = ReadingQuestionCriterionTrialId,
|
||||
TrialId = trialId,
|
||||
Type = quesiton.Type,
|
||||
IsJudgeQuestion=quesiton.IsJudgeQuestion,
|
||||
Remark=quesiton.Remark,
|
||||
TypeValue = quesiton.TypeValue,
|
||||
});
|
||||
|
||||
@@ -335,6 +338,8 @@ namespace IRaCIS.Application.Services
|
||||
ReadingQuestionCriterionTrialId = ReadingQuestionCriterionTrialId,
|
||||
TrialId = trialId,
|
||||
Type = quesiton.Type,
|
||||
IsJudgeQuestion = quesiton.IsJudgeQuestion,
|
||||
Remark = quesiton.Remark,
|
||||
TypeValue = quesiton.TypeValue,
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user