修改导表内容

This commit is contained in:
2023-02-27 14:50:35 +08:00
parent 694cf0f59a
commit cdd714e2a4
3 changed files with 30 additions and 2 deletions
@@ -584,6 +584,14 @@ namespace IRaCIS.Core.Application.Contracts
public string CheckDialogStr { get; set; }
public DateTime? CheckBackTime { get; set; }
public DateTime? EarliestScanDate { get; set; }
public DateTime? LatestScanDate { get; set; }
public List<string> ModalityList { get; set; }
public string Modalitys => string.Join(',', ModalityList);
}
@@ -1248,6 +1256,17 @@ namespace IRaCIS.Core.Application.Contracts
public List<CheckChanllengeDialogDTO> DialogList { get; set; }
}
public class QCCheckWithModalityView: QCCheckViewModel
{
public DateTime? EarliestScanDate { get; set; }
public DateTime? LatestScanDate { get; set; }
public List<string> ModalityList { get; set; }
public string Modalitys =>string.Join(',', ModalityList);
}
public class QCCheckViewModel
{
public string? TalkContent { get; set; } = String.Empty;