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.
 
 
 

80 lines
1.8 KiB

using System;
using System.Collections.Generic;
using System.Text;
namespace Shentun.WebPeis.QuestionAnswers
{
public class QuestionAnswerDto: AuditedEntityDtoName
{
/// <summary>
/// 主键
/// </summary>
public Guid QuestionAnswerId { get; set; }
/// <summary>
/// 答案
/// </summary>
public string QuestionAnswerName { get; set; } = null!;
/// <summary>
/// 问卷ID
/// </summary>
public Guid QuestionId { get; set; }
/// <summary>
/// 子答案类别
/// </summary>
public char? ChildAnswerType { get; set; }
/// <summary>
/// 答案结果类别
/// </summary>
public char? AnswerResultType { get; set; }
/// <summary>
/// 别名
/// </summary>
public string? Aliases { get; set; }
/// <summary>
/// 概述
/// </summary>
public string? Overview { get; set; }
/// <summary>
/// 可能原因
/// </summary>
public string? Reason { get; set; }
/// <summary>
/// 健康指导
/// </summary>
public string? HealthGuidance { get; set; }
/// <summary>
/// 父答案ID
/// </summary>
public Guid? ParentId { get; set; }
/// <summary>
/// 编码路径
/// </summary>
public string? PathCode { get; set; }
/// <summary>
/// 子答案标题
/// </summary>
public string? ChildAnswerTitle { get; set; }
/// <summary>
/// 无,和其它答案排斥
/// </summary>
public char IsNone { get; set; }
public string SimpleCode { get; set; } = null!;
public int DisplayOrder { get; set; }
}
}