6 changed files with 63 additions and 17 deletions
-
10src/Shentun.Peis.Application.Contracts/Diagnosises/DiagnosisInSuggestionDto.cs
-
10src/Shentun.Peis.Application.Contracts/Suggestions/CreateSuggestionManyDto.cs
-
21src/Shentun.Peis.Application/Diagnosises/DiagnosisAppService.cs
-
5src/Shentun.Peis.Application/Suggestions/SuggestionAppService.cs
-
23src/Shentun.Peis.Domain.Shared/Enums/SuggestionTypeFlag.cs
-
9src/Shentun.Peis.Domain/Suggestions/SuggestionManager.cs
@ -0,0 +1,23 @@ |
|||||
|
using System; |
||||
|
using System.Collections.Generic; |
||||
|
using System.ComponentModel; |
||||
|
using System.Text; |
||||
|
|
||||
|
namespace Shentun.Peis.Enums |
||||
|
{ |
||||
|
public static class SuggestionTypeFlag |
||||
|
{ |
||||
|
/// <summary>
|
||||
|
/// 医学解释
|
||||
|
/// </summary>
|
||||
|
[Description("医学解释")] |
||||
|
public const char MedicalInterpretation = '0'; |
||||
|
|
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 健康指导
|
||||
|
/// </summary>
|
||||
|
[Description("健康指导")] |
||||
|
public const char HealthGuidance = '1'; |
||||
|
} |
||||
|
} |
||||
Write
Preview
Loading…
Cancel
Save
Reference in new issue