3 changed files with 87 additions and 24 deletions
-
39src/Shentun.Peis.Application.Contracts/OccupationalDiseases/OccupationalDiseaseInspectionConclusionInputDto.cs
-
48src/Shentun.Peis.Application.Contracts/OccupationalDiseases/OccupationalDiseaseWithDetailInputDto.cs
-
24src/Shentun.Peis.Application/OccupationalDiseases/OccupationalDiseaseAppService.cs
@ -0,0 +1,39 @@ |
|||||
|
using System; |
||||
|
using System.Collections.Generic; |
||||
|
using System.Text; |
||||
|
|
||||
|
namespace Shentun.Peis.OccupationalDiseases |
||||
|
{ |
||||
|
public class OccupationalDiseaseInspectionConclusionInputDto |
||||
|
{ |
||||
|
/// <summary>
|
||||
|
/// 人员登记ID
|
||||
|
/// </summary>
|
||||
|
public Guid PatientRegisterId { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 职业性异常
|
||||
|
/// </summary>
|
||||
|
public string OccupationalAbnormal { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 非职业性异常
|
||||
|
/// </summary>
|
||||
|
public string NoOccupationalAbnormal { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 职业性异常建议
|
||||
|
/// </summary>
|
||||
|
public string OccupationalAbSuggestion { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 非职业性异常建议
|
||||
|
/// </summary>
|
||||
|
public string NoOccupAbSuggestion { get; set; } |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// 处理意见
|
||||
|
/// </summary>
|
||||
|
public string HandleSuggestion { get; set; } |
||||
|
} |
||||
|
} |
||||
Write
Preview
Loading…
Cancel
Save
Reference in new issue