//-------------------------------------------------------------------- // 此代码由T4模板自动生成 byzhouhang 20210918 // 生成时间 2021-12-23 13:21:04 // 对此文件的更改可能会导致不正确的行为,并且如果重新生成代码,这些更改将会丢失。 //-------------------------------------------------------------------- namespace IRaCIS.Core.Application.Contracts { /// TrialSiteEquipmentSurveyView 列表视图模型 public class TrialSiteEquipmentSurveyView: TrialSiteEquipmentSurveyAddOrEdit { public DateTime CreateTime { get; set; } public Guid CreateUserId { get; set; } public DateTime UpdateTime { get; set; } public Guid UpdateUserId { get; set; } } ///TrialSiteEquipmentSurveyQuery 列表查询参数模型 public class TrialSiteEquipmentSurveyQuery { public Guid TrialSiteSurveyId { get; set; } public string ScannerType { get; set; } = string.Empty; ///// Parameters //public string Parameters { get; set; } ///// ManufacturerName //public string ManufacturerName { get; set; } ///// ScannerType //public string ScannerType { get; set; } ///// Note //public string Note { get; set; } } /// TrialSiteEquipmentSurveyAddOrEdit 列表查询参数模型 public class TrialSiteEquipmentSurveyAddOrEdit { public Guid? Id { get; set; } public Guid TrialSiteSurveyId { get; set; } public Guid? EquipmentTypeId { get; set; } public string Parameters { get; set; } = string.Empty; public string ManufacturerName { get; set; } = string.Empty; public string ScannerType { get; set; } = string.Empty; public string Note { get; set; } = string.Empty; [Comment("扫描设备-New")] public int? EquipmentTypeEnum { get; set; } public string OtherEquipmentType { get; set; } [Comment("扫描设备厂商")] public int? ManufacturerType { get; set; } [Comment("磁场强度 (1.5T / 3.0T)")] public int? MagneticFieldStrengthType { get; set; } [Comment("体部线圈通道数 (≥16 或 <16)")] public int? BodyCoilChannelCount { get; set; } [Comment("是否具备专用的PDFF脂肪定量序列(CSE-MRI序列)")] public bool? HasDedicatedPdfFatQuantificationSequence { get; set; } [Comment("专用的PDFF脂肪定量序列类型 (当 HasDedicatedPdfFatQuantificationSequence = true 时有效)")] public int? PdfFatQuantificationSequenceType { get; set; } [Comment("其他序列详细说明 (当 PdfFatQuantificationSequenceType = Other 时建议填写)")] public string OtherSequenceSpecification { get; set; } [Comment("是否包含 T2/R2 校正(用于铁沉积校正)")] public bool? HasT2R2Correction { get; set; } [Comment("是否可完整导出 PDFF 参数图及全部原始 DICOM 数据")] public bool? CanFullyExportPdfParameterMapsAndRawDicom { get; set; } } }