4 changed files with 152 additions and 4 deletions
-
75src/Shentun.Peis.Application.Contracts/Diagnosises/SimpleDiagnosisWithSuggestionsDto.cs
-
6src/Shentun.Peis.Application/DataMigrations/BaseDataHandleAppService.cs
-
73src/Shentun.Peis.Application/Diagnosises/DiagnosisAppService.cs
-
2src/Shentun.Peis.Application/Suggestions/SuggestionAppService.cs
@ -0,0 +1,75 @@ |
|||
using Shentun.Peis.SuggestionDtos; |
|||
using System; |
|||
using System.Collections.Generic; |
|||
using System.Text; |
|||
|
|||
namespace Shentun.Peis.Diagnosises |
|||
{ |
|||
public class SimpleDiagnosisWithSuggestionsDto |
|||
{ |
|||
/// <summary>
|
|||
/// 诊断ID
|
|||
/// </summary>
|
|||
public Guid Id { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 项目类别
|
|||
/// </summary>
|
|||
public Guid ItemTypeId { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 名称
|
|||
/// </summary>
|
|||
public string DisplayName { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 是疾病
|
|||
/// </summary>
|
|||
public char IsIll { get; set; } |
|||
/// <summary>
|
|||
/// 是总检模板
|
|||
/// </summary>
|
|||
public char IsSummaryTemplate { get; set; } |
|||
/// <summary>
|
|||
/// 适用性别
|
|||
/// </summary>
|
|||
public char ForSexId { get; set; } |
|||
/// <summary>
|
|||
/// 诊断级别
|
|||
/// </summary>
|
|||
public short DiagnosisLevelId { get; set; } |
|||
|
|||
public string SimpleCode { get; set; } |
|||
|
|||
public int DisplayOrder { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 医学解释
|
|||
/// </summary>
|
|||
public List<SimpleDiagnosisWithSuggestionsSuggestionDto> MedicalInterpretations { get; set; } |
|||
/// <summary>
|
|||
/// 常见原因
|
|||
/// </summary>
|
|||
|
|||
public List<SimpleDiagnosisWithSuggestionsSuggestionDto> CommonReasons { get; set; } |
|||
|
|||
/// <summary>
|
|||
/// 健康指导
|
|||
/// </summary>
|
|||
public List<SimpleDiagnosisWithSuggestionsSuggestionDto> HealthGuidances { get; set; } |
|||
|
|||
} |
|||
|
|||
|
|||
|
|||
public class SimpleDiagnosisWithSuggestionsSuggestionDto |
|||
{ |
|||
/// <summary>
|
|||
/// 建议内容
|
|||
/// </summary>
|
|||
public string SuggestionContent { get; set; } |
|||
|
|||
} |
|||
|
|||
|
|||
} |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue