using System; using System.Collections.Generic; namespace Shentun.WebPeis.Models; /// /// 问卷答案 /// public partial class QuestionAnswer { /// /// 主键 /// public Guid QuestionAnswerId { get; set; } /// /// 答案 /// public string QuestionAnswerName { get; set; } = null!; /// /// 问卷ID /// public Guid QuestionId { get; set; } public string SimpleCode { get; set; } = null!; public int DisplayOrder { get; set; } public DateTime CreationTime { get; set; } public Guid CreatorId { get; set; } public DateTime LastModificationTime { get; set; } public Guid LastModifierId { get; set; } /// /// 有子答案 /// public char? IsHaveChild { get; set; } /// /// 子答案类别 /// public char? ChildAnswerType { get; set; } /// /// 答案结果类别 /// public char? AnswerResultType { get; set; } /// /// 答案对应的疾病风险级别ID /// public Guid? DiseaseRiskLevelId { get; set; } public virtual ICollection QuestionRegisterAnswers { get; set; } = new List(); }