Uat_Study
he 2022-08-04 16:44:36 +08:00
parent 51f8e3d46d
commit 04a7476a97
2 changed files with 2 additions and 2 deletions

View File

@ -89,7 +89,7 @@ namespace IRaCIS.Core.Application.Contracts
public class TrialQCQuestionConfigureBatchAdd public class TrialQCQuestionConfigureBatchAdd
{ {
public Guid Id { get; set; } public Guid? Id { get; set; }
public string QuestionName { get; set; } = string.Empty; public string QuestionName { get; set; } = string.Empty;
public bool IsRequired { get; set; } public bool IsRequired { get; set; }
public bool IsEnable { get; set; } public bool IsEnable { get; set; }

View File

@ -143,7 +143,7 @@ namespace IRaCIS.Core.Application.Contracts
batchList.ForEach(x => batchList.ForEach(x =>
{ {
x.ShowOrder= maxShowOrder++; x.ShowOrder= maxShowOrder++;
x.SystemQuestionId = x.Id; x.SystemQuestionId = x.Id.Value;
x.Id = NewId.NextGuid(); x.Id = NewId.NextGuid();
}); });