using MadRunFabric.Common; using MongoDB.Bson.Serialization.Attributes; using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Text; namespace MadRunFabric.Model.TestUserTypeApi { public class TestPager: IBaseModel { /// /// id /// [Key] [BsonRepresentation(MongoDB.Bson.BsonType.ObjectId)] public string id { get; set; } /// /// 试卷类型 /// public string testtype { get; set; } /// /// 类型名称 /// public string testtypename { get; set; } /// /// 题目问题 /// public string testtitle { get; set; } /// /// 题目类型 /// public string tesquestionType { get; set; } /// /// 选项编号 /// public string tesquestid { get; set; } /// /// 题目选项 /// public string testoptions { get; set; } /// /// 参考答案 /// public string standardkey { get; set; } /// /// 添加时间 /// public DateTime? createdatatime { get; set; } /// /// 序号 /// public int testcode { get; set; } /// /// 是否删除 /// public int isdelete { get; set; } /// /// 选项集合 /// public IEnumerable optionlists { get; set; } } }