You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
635 B

3 years ago
3 years ago
3 years ago
  1. using Shentun.Peis.SumSuggestionContents;
  2. using Shentun.Peis.SumSummaryContents;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Text;
  6. namespace Shentun.Peis.SumSuggestionHeaders
  7. {
  8. public class CreateSumSuggestionHeaderOrContentDto
  9. {
  10. /// <summary>
  11. /// 病人登记ID
  12. /// </summary>
  13. public Guid PatientRegisterId { get; set; }
  14. /// <summary>
  15. /// 建议标题
  16. /// </summary>
  17. public string SuggestionTitle { get; set; }
  18. public Guid? DiagnosisId { get; set; }
  19. public List<CreateSumSuggestionContentDto> Details { get; set; }
  20. }
  21. }