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 diagnosisinbases : IBaseModel { /// /// id /// [Key] [BsonRepresentation(MongoDB.Bson.BsonType.ObjectId)] public string id { get; set; } /// /// 参加会诊人姓名 /// public string diagnoname { get; set; } /// /// 参加会诊人手机号 /// public string diagnotel { get; set; } /// /// 参加会诊人电话号 /// public string diagnophone { get; set; } /// /// 创建时间 /// public DateTime? createdate { get; set; } /// /// 是否通知 /// public string isnotice { get; set; } /// /// 是否删除 /// public int isdelete { get; set; } } }