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.

48 lines
1.1 KiB

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Shentun.WebPeis.Questions
  5. {
  6. public class CreateQuestionDto
  7. {
  8. /// <summary>
  9. /// 主键
  10. /// </summary>
  11. public Guid QuestionId { get; set; }
  12. /// <summary>
  13. /// 题目
  14. /// </summary>
  15. public string QuestionName { get; set; } = null!;
  16. /// <summary>
  17. /// 问卷类别ID
  18. /// </summary>
  19. public string QuestionTypeId { get; set; }
  20. /// <summary>
  21. /// 答案类别 0-单选 1-多选
  22. /// </summary>
  23. public char? AnswerType { get; set; }
  24. /// <summary>
  25. /// 问卷题目类别 01-生育 ,02-不适症状,03-危险因素,04-所患疾病
  26. /// </summary>
  27. public string QuestionSubjectTypeId { get; set; }
  28. /// <summary>
  29. /// 启用
  30. /// </summary>
  31. public char? IsActive { get; set; }
  32. /// <summary>
  33. /// 父问卷ID
  34. /// </summary>
  35. public Guid? ParentId { get; set; }
  36. }
  37. }