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 UserTest : IBaseModel { [Key] [BsonRepresentation(MongoDB.Bson.BsonType.ObjectId)] public string id { get; set; } /// /// 电话号 /// public string telcode { get; set; } /// /// 答题数量 /// public int testcount { get; set; } /// /// 总分数 /// public int allgrade { get; set; } /// /// 试卷类型 /// public string testtype { get; set; } /// /// 试卷类型名称 /// public string testtypename { get; set; } /// /// testpager试卷表id /// public string testid { get; set; } /// /// 答题时间 /// public DateTime? createtime { get; set; } /// /// 是否删除 /// public int isdelete { get; set; } } }