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.
37 lines
931 B
37 lines
931 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Shentun.Peis.AppointPatientRegisters
|
|
{
|
|
public class QuestionRegisterItemResultDto
|
|
{
|
|
/// <summary>
|
|
/// 主键
|
|
/// </summary>
|
|
public Guid QuestionRegisterItemId { get; set; }
|
|
/// <summary>
|
|
/// 问卷ID
|
|
/// </summary>
|
|
public Guid QuestionId { get; set; }
|
|
/// <summary>
|
|
/// 题目
|
|
/// </summary>
|
|
|
|
public string QuestionName { get; set; } = null!;
|
|
|
|
|
|
/// <summary>
|
|
/// 显示顺序
|
|
/// </summary>
|
|
public int DisplayOrder { get; set; }
|
|
|
|
public List<QuestionRegisterItemResultAnswer> Answers { get; set; } = new List<QuestionRegisterItemResultAnswer>();
|
|
}
|
|
|
|
public class QuestionRegisterItemResultAnswer
|
|
{
|
|
public string Answer { get; set; }
|
|
public int DisplayOrder { get; set; }
|
|
}
|
|
}
|