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.
59 lines
1.3 KiB
59 lines
1.3 KiB
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Shentun.WebPeis.Models;
|
|
|
|
/// <summary>
|
|
/// 问卷答案
|
|
/// </summary>
|
|
public partial class QuestionAnswer
|
|
{
|
|
/// <summary>
|
|
/// 主键
|
|
/// </summary>
|
|
public Guid QuestionAnswerId { get; set; }
|
|
/// <summary>
|
|
/// 答案
|
|
/// </summary>
|
|
|
|
public string QuestionAnswerName { get; set; } = null!;
|
|
/// <summary>
|
|
/// 问卷ID
|
|
/// </summary>
|
|
|
|
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; }
|
|
/// <summary>
|
|
/// 有子答案
|
|
/// </summary>
|
|
|
|
public char? IsHaveChild { get; set; }
|
|
/// <summary>
|
|
/// 子答案类别
|
|
/// </summary>
|
|
|
|
public char? ChildAnswerType { get; set; }
|
|
/// <summary>
|
|
/// 答案结果类别
|
|
/// </summary>
|
|
|
|
public char? AnswerResultType { get; set; }
|
|
/// <summary>
|
|
/// 答案对应的疾病风险级别ID
|
|
/// </summary>
|
|
|
|
public Guid? DiseaseRiskLevelId { get; set; }
|
|
|
|
public virtual ICollection<QuestionRegisterAnswer> QuestionRegisterAnswers { get; set; } = new List<QuestionRegisterAnswer>();
|
|
}
|