using System; using System.Collections.Generic; using System.Text; namespace Shentun.WebPeis.Questions { public class CreateQuestionDto { /// /// 主键 /// public Guid QuestionId { get; set; } /// /// 题目 /// public string QuestionName { get; set; } = null!; /// /// 问卷类别ID /// public string QuestionTypeId { get; set; } /// /// 答案类别 0-单选 1-多选 /// public char? AnswerType { get; set; } /// /// 问卷题目类别 01-生育 ,02-不适症状,03-危险因素,04-所患疾病 /// public string QuestionSubjectTypeId { get; set; } /// /// 启用 /// public char? IsActive { get; set; } /// /// 父问卷ID /// public Guid? ParentId { get; set; } } }