namespace MiAssessment.Admin.Business.Models.Assessment;
///
/// 题目 DTO
///
public class QuestionDto
{
///
/// 主键ID
///
public long Id { get; set; }
///
/// 测评类型ID
///
public long AssessmentTypeId { get; set; }
///
/// 测评类型名称
///
public string AssessmentTypeName { get; set; } = string.Empty;
///
/// 题号
///
public int QuestionNo { get; set; }
///
/// 题目内容
///
public string Content { get; set; } = string.Empty;
///
/// 排序
///
public int Sort { get; set; }
///
/// 状态:0禁用 1启用
///
public int Status { get; set; }
///
/// 状态名称
///
public string StatusName { get; set; } = string.Empty;
///
/// 关联的分类数量
///
public int CategoryCount { get; set; }
///
/// 创建时间
///
public DateTime CreateTime { get; set; }
}