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.

32 lines
892 B

2 years ago
2 years ago
2 years ago
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel.DataAnnotations.Schema;
  4. using System.ComponentModel.DataAnnotations;
  5. using System.Text;
  6. namespace Shentun.Peis.Suggestions
  7. {
  8. public class CreateSuggestionManyDto
  9. {
  10. /// <summary>
  11. /// 诊断ID
  12. /// </summary>
  13. [Required(ErrorMessage = "诊断ID不能为空")]
  14. public Guid DiagnosisId { get; set; }
  15. /// <summary>
  16. /// 建议类型(0-代表医学解释,1-代表健康指导)
  17. /// </summary>
  18. public char SuggestionType { get; set; }
  19. public List<CreateSuggestionMany_Detail> Details { get; set; } = new List<CreateSuggestionMany_Detail>();
  20. }
  21. public class CreateSuggestionMany_Detail
  22. {
  23. /// <summary>
  24. /// 建议内容
  25. /// </summary>
  26. public string SuggestionContent { get; set; }
  27. }
  28. }