//-------------------------------------------------------------------- // 此代码由T4模板自动生成 byzhouhang 20210918 // 生成时间 2022-08-12 14:07:12 // 对此文件的更改可能会导致不正确的行为,并且如果重新生成代码,这些更改将会丢失。 //-------------------------------------------------------------------- using System; using IRaCIS.Core.Domain.Share; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; namespace IRaCIS.Core.Application.ViewModel { public class CriterionNidusView { public Guid? Id { get; set; } public Guid CriterionId { get; set; } /// /// 器官类型 /// public OrganType OrganType { get; set; } public LesionType LesionType { get; set; } public DateTime CreateTime { get; set; } public Guid CreateUserId { get; set; } } public class OrganDictionary { public string ChildGroup { get; set; } public int ChildCodeEnum { get; set; } public DicDataTypeEnum DataTypeEnum { get; set; } public string Value { get; set; } = string.Empty; public string ValueCN { get; set; } = string.Empty; public string Description { get; set; } = string.Empty; public int ShowOrder { get; set; } public Guid UpdateUserId { get; set; } public DateTime UpdateTime { get; set; } public Guid CreateUserId { get; set; } public DateTime CreateTime { get; set; } public string Code { get; set; } public Guid? ParentId { get; set; } public bool IsEnable { get; set; } public Guid? ConfigTypeId { get; set; } } public class GetCriterionLesionTypeInDto { public Guid? SystemCriterionId { get; set; } public Guid? TrialCriterionId { get; set; } } ///CriterionNidusQuery 列表查询参数模型 public class CriterionNidusQuery { public Guid CriterionId { get; set; } } /// CriterionNidusAddOrEdit 列表查询参数模型 public class CriterionNidusAddOrEdit { public Guid? Id { get; set; } public Guid CriterionId { get; set; } /// /// 病灶类型 /// public LesionType LesionType { get; set; } /// /// 器官类型 /// public OrganType OrganType { get; set; } /// /// 是否是系统标准 /// public bool IsSystemCriterion { get; set; } = true; public bool CriterionNidus { get; set; } } public class BatchAddTrialOrganInDto { public Guid TrialId { get; set; } public Guid TrialReadingCriterionId { get; set; } public List OrganIds { get; set; } } /// OrganInfoView 列表视图模型 public class OrganInfoView { public Guid Id { get; set; } /// /// 部位 /// public string Part { get; set; } /// /// TULOC /// public string TULOC { get; set; } /// /// 位置 /// public string TULAT { get; set; } /// /// 备注 /// public string Remark { get; set; } /// /// 是否是淋巴结 /// public IsLymph IsLymphNodes { get; set; } /// /// 是否可编辑位置 /// public bool IsCanEditPosition { get; set; } /// /// 器官类型 /// public OrganType OrganType { get; set; } /// /// 部位 英文 /// public string PartEN { get; set; } = string.Empty; /// /// TULOC 英文 /// public string TULOCEN { get; set; } = string.Empty; /// /// 位置 英文 /// public string TULATEN { get; set; } = string.Empty; /// /// 分类 /// public string Classification { get; set; } = string.Empty; /// /// 分类 英文 /// public string ClassificationEN { get; set; } = string.Empty; /// /// 序号 /// public int ShowOrder { get; set; } = 0; } public class GetTrialSelectOrganListInDto { public Guid TrialId { get; set; } } public class CriterionNidusData : CriterionNidusSystem { public Guid OriginalId { get; set; } } public class SynchronizeSystemOrganInDto { [NotDefault] public Guid FromCriterionId { get; set; } [NotDefault] public Guid ToCriterionId { get; set; } } public class SynchronizeSystemOrganToTrialInDto { public Guid TrialReadingCriterionId { get; set; } public Guid? SystemCriterionId { get; set; } } public class GetReadingOrganListOutDto { /// /// 病灶类型 /// public LesionType LesionType { get; set; } public List OrganList { get; set; } } public class GetReadingOrganListInDto { [NotDefault] public Guid VisitTaskId { get; set; } } public class SetOrganIsEnableInDto { public bool IsEnable { get; set; } public List Ids { get; set; } } public class GetTrialOrganListInDto { public Guid? TrialReadingCriterionId { get; set; } public Guid? VisitTaskId { get; set; } public OrganType? OrganType { get; set; } /// /// 病灶类型 /// public LesionType? LesionType { get; set; } public bool? IsEnable { get; set; } public IsLymph? IsLymphNodes { get; set; } public string Part { get; set; } = string.Empty; public string TULOC { get; set; } = string.Empty; public string TULAT { get; set; } = string.Empty; /// /// 部位 英文 /// public string PartEN { get; set; } = string.Empty; /// /// TULOC 英文 /// public string TULOCEN { get; set; } = string.Empty; /// /// 位置 英文 /// public string TULATEN { get; set; } = string.Empty; } public class GetTrialCheckOrganList : GetTrialOrganListOutDto { public bool IsCheckd { get; set; } } public class ReadingOrganDto : GetTrialOrganListOutDto { public Guid OrganInfoId { get; set; } /// /// 病灶类型 /// public LesionType LesionType { get; set; } } public class GetTrialOrganListOutDto { public Guid Id { get; set; } public string? Part { get; set; } public string? TULOC { get; set; } public string? TULAT { get; set; } /// /// 分类 /// public string Classification { get; set; } = string.Empty; /// /// 分类 英文 /// public string ClassificationEN { get; set; } = string.Empty; /// /// 序号 /// public int ShowOrder { get; set; } = 0; /// /// 是否可编辑位置 /// public bool IsCanEditPosition { get; set; } public bool IsEnable { get; set; } /// /// 器官类型 /// public OrganType OrganType { get; set; } /// /// 备注 /// public string Remark { get; set; } /// /// 是否是淋巴结 /// public IsLymph IsLymphNodes { get; set; } /// /// 部位 英文 /// public string PartEN { get; set; } = string.Empty; /// /// TULOC 英文 /// public string TULOCEN { get; set; } = string.Empty; /// /// 位置 英文 /// public string TULATEN { get; set; } = string.Empty; } ///OrganInfoQuery 列表查询参数模型 public class OrganInfoQuery:PageInput { /// /// 病灶类型 /// public OrganType? OrganType { get; set; } /// /// 病灶类型 /// public LesionType? LesionType { get; set; } public Guid SystemCriterionId { get; set; } public string Part { get; set; } = string.Empty; public string TULAT { get; set; } = string.Empty; public string TULOC { get; set; } = string.Empty; } /// OrganInfoAddOrEdit 列表查询参数模型 = string.Empty; public class OrganInfoAddOrEdit { public Guid? Id { get; set; } public string Part { get; set; } /// /// 分类 /// public string Classification { get; set; } = string.Empty; /// /// 分类 英文 /// public string ClassificationEN { get; set; } = string.Empty; /// /// 序号 /// public int ShowOrder { get; set; } = 0; public string TULOC { get; set; } public string TULAT { get; set; } /// /// 是否可编辑位置 /// public bool IsCanEditPosition { get; set; } /// /// 备注 /// public string Remark { get; set; } /// /// 是否是淋巴结 /// public IsLymph IsLymphNodes { get; set; } /// /// 病灶类型 /// public OrganType OrganType { get; set; } /// /// 标准 病灶类型 /// public Guid SystemCriterionId { get; set; } public DateTime CreateTime { get; set; } public Guid CreateUserId { get; set; } /// /// 部位 英文 /// public string PartEN { get; set; } = string.Empty; /// /// TULOC 英文 /// public string TULOCEN { get; set; } = string.Empty; /// /// 位置 英文 /// public string TULATEN { get; set; } = string.Empty; } }