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