修改枚举

This commit is contained in:
2022-07-08 10:36:58 +08:00
parent 817d6e5e9a
commit fde57c12cb
12 changed files with 91 additions and 34 deletions
@@ -125,7 +125,7 @@ namespace IRaCIS.Core.Application.ViewModel
{
public Guid TrialId { get; set; }
public ReadingCategory ReadingCategory { get; set; }
public GenerateTaskCategory ReadingCategory { get; set; }
@@ -154,6 +154,7 @@ namespace IRaCIS.Core.Application.ViewModel
public List<VisitTaskSimpleDTO> GenerataConsistentTaskList { get; set; }
}
//public class ReReadingApplyGenerateTaskCommand
@@ -91,14 +91,23 @@ namespace IRaCIS.Core.Application.ViewModel
public TaskState TaskState { get; set; }
//可以不查询
public List<VisitTaskSimpleDTO> GlobalVisitTaskList { get; set; }
//也可以不查询
public bool IsHaveGeneratedTask { get; set; }
public string BlindSubjectCode { get; set; } = string.Empty;
public string BlindTrialSiteCode { get; set; } = string.Empty;
[JsonIgnore]
public Guid? DoctorUserId { get; set; }
[JsonIgnore]
public Guid? TaskConsistentRuleId { get; set; }
public bool IsHaveGeneratedTask { get; set; }
public List<VisitTaskSimpleDTO> GlobalVisitTaskList { get; set; }
}
@@ -187,8 +196,12 @@ namespace IRaCIS.Core.Application.ViewModel
public int IntervalWeeks { get; set; }
public bool IsHaveReadingPeriod { get; set; }
public bool IsGenerateGlobalTask { get; set; }
public Guid AnalysisDoctorUserId { get; set; }
public int BlindSubjectNumberOfPlaces { get; set; }
public string BlindTrialSiteCode { get; set; } = string.Empty;
}