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 UserDoTest : IBaseModel { [Key] [BsonRepresentation(MongoDB.Bson.BsonType.ObjectId)] public string id { get; set; } /// /// 电话号 /// public string telcode { get; set; } /// /// testpager试卷表id /// public string testid { get; set; } /// /// 试题名称 /// public string testname { get; set; } /// /// 试卷类型 /// public string testtype { get; set; } /// /// 试卷类型名称 /// public string testtypename { get; set; } /// /// 选项 /// public string testoptions { get; set; } /// /// 每题得分 /// public int grade { get; set; } /// /// 答题时间 /// public DateTime? createtime { get; set; } /// /// 试卷内容 /// public string testcent { get; set; } /// /// 是否删除 /// public int isdelete { get; set; } } }