修改一版
parent
9a1ddb8450
commit
e96bed8073
|
@ -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,
|
||||
});
|
||||
|
||||
|
|
|
@ -70,6 +70,11 @@ namespace IRaCIS.Core.Domain.Models
|
|||
/// </summary>
|
||||
public bool IsJudgeQuestion { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 备注
|
||||
/// </summary>
|
||||
public string Remark { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 创建人
|
||||
/// </summary>
|
||||
|
|
|
@ -68,6 +68,11 @@ namespace IRaCIS.Core.Domain.Models
|
|||
/// </summary>
|
||||
public bool IsJudgeQuestion { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 备注
|
||||
/// </summary>
|
||||
public string Remark { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 创建时间
|
||||
/// </summary>
|
||||
|
|
Loading…
Reference in New Issue