using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Admin.NET.Application
{
///
///
///
public class BusScaleRequestDTO
{
public long ScaleId { get; set; }
}
public class Remark
{
public string name { get; set; }
public string value { get; set; }
}
public class Answers
{
public string name { get; set; }
public string type { get; set; }
public string value { get; set; }
}
///
///
///
public class BusScaleStudyBroadResponseDTO
{
///
///
///
public string TitleName { get; set; }
///
///
///
public List busScaleStudies { get; set; }
}
///
///
///
public class BusScaleStudyBroadDTO
{
public int type { get; set; }
public string name { get; set; }
public List answer { get; set; }
public Remark remark { get; set; }
}
///
/// 试题
///
public class BusScaleResponseDTO
{
///
/// 量表类型名称
///
public string Name { get; set; }
///
/// 单选多选
///
public int QuestionsType { get; set; }
public int Go { get; set; }
public string Description { get; set; }
///
/// 试题列表
///
public List scaleQuestions { get; set; }
}
///
///
///
public class ScaleQuestions
{
///
///
///
public string title { get; set; }
///
///
///
public string type { get; set; } = "";
///
///
///
public int sort { get; set; }
///
///
///
public int score { get; set; }
///
///
///
public List answer { get; set; }
}
///
///
///
public class Answer
{
public string key { get; set; } = "";
public string tag { get; set; } = "";
public string name { get; set; }
public string value { get; set; }
public int score { get; set; }
}
}