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