TbQuestionInfoOutput.cs 1.1 KB
using System;
using System.Collections.Generic;
using NCC.Common.Model;

namespace NCC.Education.Entitys.Dto.TbQuestion
{
    /// <summary>
    /// 题库信息输出参数
    /// </summary>
    public class TbQuestionInfoOutput
    {
        /// <summary>
        /// 主键
        /// </summary>
        public string id { get; set; }
        
        /// <summary>
        /// 标题
        /// </summary>
        public string title { get; set; }
        
        /// <summary>
        /// 图片信息
        /// </summary>
        public List<FileControlsModel> img { get; set; }
        
        /// <summary>
        /// 图文信息
        /// </summary>
        public string editors { get; set; }
        
        /// <summary>
        /// 创建时间
        /// </summary>
        public DateTime? creatorTime { get; set; }
        
        /// <summary>
        /// 修改时间
        /// </summary>
        public DateTime? lastModifyTime { get; set; }
        /// <summary>
        /// 是否默认 1--默认 2--普通
        /// </summary>
        public string detault { get; set; }

    }
}