Uat_Study
parent
51f8e3d46d
commit
04a7476a97
|
@ -89,7 +89,7 @@ namespace IRaCIS.Core.Application.Contracts
|
|||
public class TrialQCQuestionConfigureBatchAdd
|
||||
{
|
||||
|
||||
public Guid Id { get; set; }
|
||||
public Guid? Id { get; set; }
|
||||
public string QuestionName { get; set; } = string.Empty;
|
||||
public bool IsRequired { get; set; }
|
||||
public bool IsEnable { get; set; }
|
||||
|
|
|
@ -143,7 +143,7 @@ namespace IRaCIS.Core.Application.Contracts
|
|||
batchList.ForEach(x =>
|
||||
{
|
||||
x.ShowOrder= maxShowOrder++;
|
||||
x.SystemQuestionId = x.Id;
|
||||
x.SystemQuestionId = x.Id.Value;
|
||||
x.Id = NewId.NextGuid();
|
||||
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue